Skip to content

Commit 2c329d8

Browse files
committed
chore: switch travis python version to 3.11
1 parent 3432778 commit 2c329d8

2 files changed

Lines changed: 11 additions & 4 deletions

File tree

.travis.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
language: python
2+
dist: jammy
23
python:
3-
- "3.6.6"
4+
- "3.11"
45
# command to install dependencies
56
install:
6-
- pip install -r requirements-dev.txt
7+
- make dev
78
# command to run tests
89
script:
9-
- flake8 sdiff tests
10-
- nosetests
10+
- make test
11+
- make coverage

setup.cfg

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,9 @@ ignore = F403, F405
44

55
[pep8]
66
max-line-length = 120
7+
8+
[coverage:run]
9+
branch = True
10+
11+
[coverage:report]
12+
fail_under = 97

0 commit comments

Comments
 (0)