We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3432778 commit 2c329d8Copy full SHA for 2c329d8
2 files changed
.travis.yml
@@ -1,10 +1,11 @@
1
language: python
2
+dist: jammy
3
python:
- - "3.6.6"
4
+ - "3.11"
5
# command to install dependencies
6
install:
- - pip install -r requirements-dev.txt
7
+ - make dev
8
# command to run tests
9
script:
- - flake8 sdiff tests
10
- - nosetests
+ - make test
11
+ - make coverage
setup.cfg
@@ -4,3 +4,9 @@ ignore = F403, F405
[pep8]
max-line-length = 120
+
+[coverage:run]
+branch = True
+[coverage:report]
12
+fail_under = 97
0 commit comments