From e1d541e5a2c7645004a243ca24939d4fa7f8b1ab Mon Sep 17 00:00:00 2001 From: Marek Otahal Date: Mon, 1 Jun 2020 15:16:12 +0200 Subject: [PATCH] CI cibw fix path to tests --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0d4d5b0b8e..d5a47cc8c0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -85,7 +85,7 @@ jobs: - name: Build wheel env: CIBW_TEST_REQUIRES: pytest - CIBW_TEST_COMMAND: "pytest py/tests bindings/py/tests" + CIBW_TEST_COMMAND: "pytest {project}/py/tests {project}/bindings/py/tests" # Only build on Python >=3.7 and skip 32-bit builds CIBW_BUILD: cp3?-* CIBW_SKIP: "*-win32 cp27-manylinux*"