We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf09edc commit 7d12cb0Copy full SHA for 7d12cb0
4 files changed
.travis.yml
@@ -6,13 +6,12 @@ dist: xenial
6
python:
7
- "3.5"
8
- "3.6"
9
-
10
-sudo: false
+ - "3.7"
11
12
install:
13
- pip install .
14
- pip install -r requirements.txt
15
- - pip install mypy==0.620
+ - pip install -r requirements-dev.txt
16
17
script:
18
- python -m mypy alertaclient/
Makefile
@@ -36,7 +36,7 @@ pylint:
36
37
mypy:
38
@pip -q install mypy==0.620
39
- mypy alerta/
+ mypy alertaclient/
40
41
hooks:
42
pre-commit run --all-files
requirements-dev.txt
@@ -1,3 +1,5 @@
1
+mypy==0.620
2
nose
3
pre-commit
4
+requests_mock
5
twine
requirements.txt
@@ -1,6 +1,5 @@
click
pytz
requests
-requests_mock
six
tabulate
0 commit comments