Skip to content

Commit d2e6548

Browse files
committed
Fix coveralls
1 parent 25747e8 commit d2e6548

File tree

3 files changed

+60
-6
lines changed

3 files changed

+60
-6
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ language: python
22
python:
33
- '3.6'
44
install:
5-
- pip install pipenv
65
- pip install -U tox coveralls
76

87
script:

requirements-tests.txt

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
anyconfig==0.9.8
2+
astroid==2.2.0.dev0
3+
basictracer==3.0.0
4+
certifi==2018.11.29
5+
chardet==3.0.4
6+
Click==7.0
7+
clickclick==1.2.2
8+
connexion==2018.0.dev1
9+
coverage==4.0.3
10+
coveralls==1.5.1
11+
docopt==0.6.2
12+
filelock==3.0.10
13+
Flask==1.0.2
14+
Flask-OpenTracing==1.0.0
15+
googleapis-common-protos==1.5.3
16+
idna==2.8
17+
inflection==0.3.1
18+
isort==4.3.4
19+
itsdangerous==1.1.0
20+
Jinja2==2.10
21+
jsonpickle==1.1
22+
jsonschema==2.6.0
23+
lazy-object-proxy==1.3.1
24+
lightstep==4.0.2
25+
MarkupSafe==1.1.0
26+
mccabe==0.6.1
27+
mock==2.0.0
28+
nose==1.3.7
29+
openapi-spec-validator==0.2.4
30+
opentracing==2.0.0
31+
pbr==5.1.1
32+
pluggy==0.8.1
33+
protobuf==3.6.1
34+
py==1.7.0
35+
py-ms==1.0.0
36+
pylint==2.3.0.dev1
37+
python-coveralls==2.9.1
38+
python-json-logger==0.1.10
39+
PyYAML==4.2b4
40+
requests==2.21.0
41+
requests-mock==1.5.2
42+
six==1.12.0
43+
swagger-ui-bundle==0.0.3
44+
thrift==0.10.0
45+
toml==0.10.0
46+
tox==3.7.0
47+
typed-ast==1.1.0
48+
urllib3==1.24.1
49+
virtualenv==16.3.0
50+
Werkzeug==0.14.1
51+
wrapt==1.11.1

tox.ini

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,24 @@
22
envlist = py36
33

44
[testenv]
5-
deps = pipenv
65
commands =
7-
pipenv install --dev --ignore-pipfile
86
coverage erase
97
coverage run -m unittest
108
coverage report -m
119
coverage xml -i
1210
coverage html -i
1311
bash -c 'pylint --rcfile={toxinidir}/pylintrc --load-plugins=pylint.extensions.docparams, pylint.extensions.mccabe {envsitepackagesdir}/project > pylintReport.txt || true'
12+
install_command =
13+
pip install {opts} {packages}
1414
recreate = True
1515
whitelist_externals = /bin/bash
1616

1717
[testenv:py36]
1818
basepython = python3.6
19-
setenv=
20-
LC_ALL=en_GB.UTF-8
21-
LANG=en_GB.UTF-8
19+
deps = -rrequirements-tests.txt
20+
[testenv:py35]
21+
basepython = python3.5
22+
deps = -rrequirements-tests.txt
23+
[testenv:py27]
24+
basepython = python2.7
25+
deps = -rrequirements-tests.txt

0 commit comments

Comments
 (0)