Skip to content

Commit 92f3f24

Browse files
committed
skip-appveyor
Signed-off-by: Giampaolo Rodola <g.rodola@gmail.com>
1 parent 0d273f9 commit 92f3f24

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ jobs:
2525
- {name: Linux, python: '3.9', os: ubuntu-latest}
2626
env:
2727
CIBW_TEST_COMMAND:
28-
make install PYTHON=python &&
29-
make test PYTHON=python &&
30-
make test-memleaks PYTHON=python
31-
28+
PYTHONWARNINGS=always PYTHONUNBUFFERED=1 PSUTIL_TESTING=1 PSUTIL_DEBUG=1
29+
python {project}/psutil/tests/runner.py &&
30+
PYTHONWARNINGS=always PYTHONUNBUFFERED=1 PSUTIL_TESTING=1 PSUTIL_DEBUG=1
31+
python {project}/psutil/tests/test_memleaks.py
3232
CIBW_TEST_EXTRAS: test
3333
CIBW_SKIP: cp35-* pp*
3434
steps:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ test-coverage: ## Run test coverage.
187187
# ===================================================================
188188

189189
lint-py: ## Run Python (flake8) linter.
190-
@git ls-files '*.py' | xargs $(PYTHON) -m flake8 --config=.flake8 && echo "flake8 OK"
190+
@git ls-files '*.py' | xargs $(PYTHON) -m flake8 --config=.flake8
191191

192192
lint-c: ## Run C linter.
193193
@git ls-files '*.c' '*.h' | xargs $(PYTHON) scripts/internal/clinter.py

0 commit comments

Comments
 (0)