From 91092d897b4a682b9f216169a3bd1dc81027c277 Mon Sep 17 00:00:00 2001 From: Kevin Sheppard Date: Thu, 12 Sep 2024 18:10:02 +0100 Subject: [PATCH] BLD: Increase verbosity --- .github/workflows/build-wheels.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-wheels.yml b/.github/workflows/build-wheels.yml index c1f10a4..e89591f 100644 --- a/.github/workflows/build-wheels.yml +++ b/.github/workflows/build-wheels.yml @@ -34,7 +34,7 @@ jobs: # Skip musl for 3.8 and 3.9 since no upstream wheels CIBW_SKIP: "pp* *-win32 cp38-musllinux* cp39-musllinux* *musllinux_aarch64*" CIBW_TEST_REQUIRES: pytest pytest-xdist - CIBW_TEST_COMMAND: python -c "import statsmodels; statsmodels.test(['--skip-examples','--skip-slow','-n','2'])" + CIBW_TEST_COMMAND: python -c "import statsmodels; statsmodels.test(['--skip-examples','--skip-slow','-n','2'], exit=True)" # Avoid testing on emulated architectures and Pyodide CIBW_TEST_SKIP: "*-*linux_{aarch64,ppc64le,s390x} *pyodide*" CIBW_REPAIR_WHEEL_COMMAND_LINUX: 'auditwheel repair --strip -w {dest_dir} {wheel}' @@ -64,6 +64,7 @@ jobs: package-dir: statsmodels env: CIBW_BEFORE_BUILD: 'git submodule foreach git checkout ${{ env.BUILD_COMMIT }}' + CIBW_BUILD_VERBOSITY: 2 - name: Build Pyodide wheel if: matrix.python_impl == 'Pyodide' @@ -75,9 +76,6 @@ jobs: CIBW_BEFORE_BUILD: 'git submodule foreach git checkout ${{ env.BUILD_COMMIT }}' CIBW_PLATFORM: pyodide CIBW_BUILD_VERBOSITY: 2 - # Tests are slow, and statsmodels is tested out-of-tree on PRs in the main repository - # CIBW_TEST_REQUIRES: pytest - # CIBW_TEST_COMMAND: python -c "import statsmodels; statsmodels.test(['--skip-examples','--skip-slow'])" - name: Setup Upload Variables if: ${{ always() }}