We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc3869c commit a07c869Copy full SHA for a07c869
2 files changed
.github/workflows/ci.yml
@@ -10,15 +10,15 @@ on:
10
11
jobs:
12
lint:
13
- runs-on: ubuntu-latest
+ runs-on: ubuntu-22.04
14
steps:
15
- name: Repository checkout
16
uses: actions/checkout@v3
17
18
- name: Set up Python
19
uses: actions/setup-python@v4
20
with:
21
- python-version: "3.8"
+ python-version: "3.7"
22
23
- name: Install dependencies
24
run: |
@@ -29,10 +29,11 @@ jobs:
29
tox -e lint
30
31
test:
32
33
strategy:
34
matrix:
35
python-version:
36
+ - "3.7"
37
- "3.8"
38
- "3.9"
39
- "3.10"
tox.ini
@@ -2,7 +2,7 @@
2
envlist = py3, lint, imports
3
4
[testenv:py3]
5
-commands = coverage run -m unittest discover {posargs}
+commands = coverage run setup.py test {posargs}
6
sitepackages = False
7
deps = coverage
8
0 commit comments