Skip to content

Commit f434be5

Browse files
committed
Change the way to run tox
1 parent c4d670d commit f434be5

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
make lint
3232
- name: Test
3333
run: |
34-
make test-all
34+
make tox-with-system-python
3535
- name: Build
3636
run: |
3737
make build

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ test:
3030
test-all:
3131
$(PYTHON_BIN)tox
3232

33+
tox-with-system-python:
34+
$(PYTHON_BIN)tox -e py
35+
3336
build:
3437
$(PYTHON_BIN)python setup.py build
3538
$(PYTHON_BIN)python setup.py install

0 commit comments

Comments
 (0)