From a4b473f6e82b5d3c18e1b5c77e3ae01a16a13b98 Mon Sep 17 00:00:00 2001 From: Matthew Roeschke Date: Fri, 12 Aug 2022 15:28:52 -0700 Subject: [PATCH] CI: Avoid flaky build errors & show installed packages in 32 bit build --- .github/workflows/32-bit-linux.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/32-bit-linux.yml b/.github/workflows/32-bit-linux.yml index e091160c952f8..67e99b4486a12 100644 --- a/.github/workflows/32-bit-linux.yml +++ b/.github/workflows/32-bit-linux.yml @@ -39,8 +39,9 @@ jobs: . ~/virtualenvs/pandas-dev/bin/activate && \ python -m pip install --no-deps -U pip wheel 'setuptools<60.0.0' && \ pip install cython numpy python-dateutil pytz pytest pytest-xdist pytest-asyncio>=0.17 hypothesis && \ - python setup.py build_ext -q -j2 && \ + python setup.py build_ext -q -j1 && \ python -m pip install --no-build-isolation --no-use-pep517 -e . && \ + python -m pip list && \ export PANDAS_CI=1 && \ pytest -m 'not slow and not network and not clipboard and not single_cpu' pandas --junitxml=test-data.xml"