Skip to content

Commit 03a626b

Browse files
Remove logging and reinstate running tests
The fix is to pin cibuildwheel at 2.2.2, but I'm doing this for the failing build log so I can raise an issue against cibuildwheel
1 parent 494e93d commit 03a626b

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

.github/workflows/code.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -54,16 +54,13 @@ jobs:
5454
fetch-depth: 0
5555
submodules: true
5656

57-
- name: Print softioc dir
58-
run: dir softioc
59-
6057
- name: Install Python
6158
uses: actions/setup-python@v2
6259
with:
6360
python-version: "3.7"
6461

6562
- name: Install Python Dependencies
66-
run: pip install build cibuildwheel==2.2.2
63+
run: pip install build cibuildwheel
6764

6865
- name: Build Sdist
6966
if: matrix.sdist
@@ -74,15 +71,13 @@ jobs:
7471
env:
7572
CIBW_BUILD: ${{ matrix.python }}*64
7673
CIBW_TEST_EXTRAS: dev
77-
# CIBW_TEST_COMMAND: pytest {project}/tests --cov-report xml:${{ matrix.cov_file }}
74+
CIBW_TEST_COMMAND: pytest {project}/tests --cov-report xml:${{ matrix.cov_file }}
7875
# Disable auditwheel as it isn't compatible with setuptools_dso approach
7976
# https://github.com/mdavidsaver/setuptools_dso/issues/17
8077
CIBW_REPAIR_WHEEL_COMMAND: ""
8178
CIBW_MANYLINUX_X86_64_IMAGE: manylinux1
8279
CIBW_ENVIRONMENT_LINUX: SETUPTOOLS_DSO_PLAT_NAME=manylinux1_x86_64
8380
CIBW_SKIP: "*-musllinux*" # epicscorelibs doesn't build on musllinux platforms
84-
# Some debugging variables to work out why subfolder not on Windows
85-
CIBW_BEFORE_ALL_WINDOWS: dir softioc
8681

8782
- name: Upload Wheel and Sdist
8883
uses: actions/upload-artifact@v2

0 commit comments

Comments
 (0)