Skip to content

Commit 347ef14

Browse files
committed
CI/CD: updated test script
1 parent 60256c2 commit 347ef14

File tree

2 files changed

+28
-5
lines changed

2 files changed

+28
-5
lines changed

.travis.yml

+8-5
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
11
language: python
22
python:
3-
- '3.6'
3+
- "2.7"
4+
- "3.6"
5+
- "3.7"
6+
- "3.8"
7+
- "3.9"
48
install:
5-
- pip install -r requirements.txt
6-
- pip install pytest-cov
7-
- pip install unittest2
9+
- pip install -r requirements-test.txt
810
script: py.test --cov=dyndns --cov-config=.coveragerc
911
deploy:
1012
provider: pypi
1113
user: "__token__"
1214
password:
1315
secure: WbgltkoM1BZQJeTJpm7J/Drvh8vm/L4QPm7+aOIP4Xx2Sw71ClAvPYH5I2Q7Vi6hJ2/5W5jCuxuUaqPYAYWYQLpGp5QwyN7FQVlBbcW3N4aCWDKJKrgn20W0caBIKPVTTh/ZuYEbO52nuccZKOqtiLe3UpbSbSNQO5iDI3aNRhggchZUQ/rIVjESYHOmtyW4dAvfHaoCCOirnP2FNuGyD4f9vlz5kXCLMlVXzma+KMzIwNxL6WJrrzUboPbd47MIDswHHrbGGGB6DzUJP2Bz7d2WRDXQahd+spnr7TDH03K3zu23dv1hYluAGx7AUukYLpeFExRkUohpDF+oqqVHfkft13GRKi2hOHLAvqru27T+lAcfwA4E/KnOy2+7bzCW8lyTegkspBVgEb2dOBH/mxGoV2h01bBBO8Ev7QEt+Xnf+EfCgNnKWBZi4LqRCOU+4P8taSIJt5h0JqpxbXCfEIJjCG+hUUkmEd6suVOxFzA90gWLVUQS3T/4yMRxpCwykrJ66a1IWTgVP6nFvTRJkJ+KuRjsr7rI3hR8L07fDmyjfWNnyaQ/3sBWCXkH2BEJnGU6Z099NmqQ/vlIiVAmRUGG5rASf5cAxh4DkVbmqu98nxC/ZqEKAb3kjZX+lPy20j1L0+1UUOch0RMgtIlF9ipZtKCeROnml6xsvJ9V3Oc=
1416
on:
15-
tags: true
17+
tags: true
18+
skip_existing: true

requirements-test.txt

+20
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,41 @@
1+
atomicwrites==1.4.0
2+
attrs==20.3.0
3+
backports.functools-lru-cache==1.6.4
14
certifi==2020.12.5
25
cffi==1.14.5
36
chardet==4.0.0
7+
colorama==0.4.4
8+
configparser==4.0.2
9+
contextlib2==0.6.0.post1
10+
coverage==5.5
411
cryptography==3.3.2
512
decorator==4.4.2
613
dnspython==1.16.0
714
domain-connect==0.0.9
815
enum34==1.1.10
16+
funcsigs==1.0.2
917
future==0.18.2
1018
idna==2.10
19+
importlib-metadata==2.1.1
1120
ipaddress==1.0.23
1221
linecache2==1.0.0
22+
more-itertools==5.0.0
23+
packaging==20.9
24+
pathlib2==2.3.5
25+
pluggy==0.13.1
1326
publicsuffix==1.1.1
1427
publicsuffixlist==0.7.7
28+
py==1.10.0
1529
pycparser==2.20
30+
pyparsing==2.4.7
31+
pytest==4.6.11
32+
pytest-cov==2.11.1
1633
requests==2.25.1
34+
scandir==1.10.0
1735
six==1.15.0
1836
traceback2==1.4.0
1937
unittest2==1.1.0
2038
urllib3==1.26.4
2139
validators==0.14.2
40+
wcwidth==0.2.5
41+
zipp==1.2.0

0 commit comments

Comments
 (0)