File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 79
79
env :
80
80
COLOR : ' yes'
81
81
run : |
82
- pytest tests
82
+ python -m pytest tests
83
83
python -m coverage xml
84
84
- name : Upload coverage
85
85
uses : codecov/codecov-action@v1
Original file line number Diff line number Diff line change 1
1
test : lint
2
- pytest tests
2
+ python -m pytest tests
3
3
4
4
lint : fmt
5
- mypy
5
+ python -m mypy
6
6
7
7
fmt :
8
8
ifdef CI
9
- pre-commit run --all-files --show-diff-on-failure
9
+ python -m pre_commit run --all-files --show-diff-on-failure
10
10
else
11
- pre-commit run --all-files
11
+ python -m pre_commit run --all-files
12
12
endif
13
13
14
14
15
15
check :
16
16
python -m build
17
- twine check dist/*
17
+ python -m twine check dist/*
18
18
19
19
install :
20
- pip install -U pip
21
- pip install -r requirements.txt
20
+ python -m pip install --user -U pip
21
+ python -m pip install --user -r requirements.txt
You can’t perform that action at this time.
0 commit comments