From 92f3f2457af21ba3dce01c124ff3fafc6afb005f Mon Sep 17 00:00:00 2001 From: Giampaolo Rodola Date: Thu, 17 Dec 2020 21:38:59 +0100 Subject: [PATCH] skip-appveyor Signed-off-by: Giampaolo Rodola --- .github/workflows/ci.yml | 8 ++++---- Makefile | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6381cbef0..b47b96cf0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,10 +25,10 @@ jobs: - {name: Linux, python: '3.9', os: ubuntu-latest} env: CIBW_TEST_COMMAND: - make install PYTHON=python && - make test PYTHON=python && - make test-memleaks PYTHON=python - + PYTHONWARNINGS=always PYTHONUNBUFFERED=1 PSUTIL_TESTING=1 PSUTIL_DEBUG=1 + python {project}/psutil/tests/runner.py && + PYTHONWARNINGS=always PYTHONUNBUFFERED=1 PSUTIL_TESTING=1 PSUTIL_DEBUG=1 + python {project}/psutil/tests/test_memleaks.py CIBW_TEST_EXTRAS: test CIBW_SKIP: cp35-* pp* steps: diff --git a/Makefile b/Makefile index fe3670319..f03930dd1 100644 --- a/Makefile +++ b/Makefile @@ -187,7 +187,7 @@ test-coverage: ## Run test coverage. # =================================================================== lint-py: ## Run Python (flake8) linter. - @git ls-files '*.py' | xargs $(PYTHON) -m flake8 --config=.flake8 && echo "flake8 OK" + @git ls-files '*.py' | xargs $(PYTHON) -m flake8 --config=.flake8 lint-c: ## Run C linter. @git ls-files '*.c' '*.h' | xargs $(PYTHON) scripts/internal/clinter.py