Skip to content

Commit 7d12cb0

Browse files
committed
Fix development config
1 parent cf09edc commit 7d12cb0

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

.travis.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,12 @@ dist: xenial
66
python:
77
- "3.5"
88
- "3.6"
9-
10-
sudo: false
9+
- "3.7"
1110

1211
install:
1312
- pip install .
1413
- pip install -r requirements.txt
15-
- pip install mypy==0.620
14+
- pip install -r requirements-dev.txt
1615

1716
script:
1817
- python -m mypy alertaclient/

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ pylint:
3636

3737
mypy:
3838
@pip -q install mypy==0.620
39-
mypy alerta/
39+
mypy alertaclient/
4040

4141
hooks:
4242
pre-commit run --all-files

requirements-dev.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
mypy==0.620
12
nose
23
pre-commit
4+
requests_mock
35
twine

requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
click
22
pytz
33
requests
4-
requests_mock
54
six
65
tabulate

0 commit comments

Comments
 (0)