Skip to content

Commit

Permalink
#46 #28 troubleshooting pytest fail on non x64 manylinuxes
Browse files Browse the repository at this point in the history
  • Loading branch information
myselfhimself committed Jul 4, 2020
1 parent 500b2cc commit 84105ee
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/cpythonmanylinuxbuild_nosendpypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
python-version: ['3.6'] #Python versions iteration happens within the manylinux docker images
plat: ['manylinux2014_x86_64']
plat: ['manylinux2014_x86_64', 'manylinux2014_i686']
#plat: ['manylinux2010_x86_64', 'manylinux2010_i686', 'manylinux2014_x86_64', 'manylinux2014_i686']
include:
# - plat: manylinux2010_i686
Expand All @@ -23,9 +23,9 @@ jobs:
- plat: manylinux2014_x86_64
docker_image: 'quay.io/pypa/manylinux2014_x86_64:latest'
pre_cmd:
# - plat: manylinux2014_i686
# docker_image: 'quay.io/pypa/manylinux2014_i686:latest'
# pre_cmd: linux32
- plat: manylinux2014_i686
docker_image: 'quay.io/pypa/manylinux2014_i686:latest'
pre_cmd: linux32
steps:
- uses: actions/checkout@v1
# Prevent running this job on tag-based releases
Expand Down
2 changes: 1 addition & 1 deletion tests/test_gmic_numpy.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def test_gmic_image_to_numpy_ndarray_exception_on_unimportable_numpy_module(
import gmic

images = []
gmic.run(images=images, command="sp duck")
gmic_instance_run(images=images, command="sp duck")
with pytest.raises(
gmic.GmicException, match=r".*'numpy' module cannot be imported.*"
):
Expand Down

0 comments on commit 84105ee

Please sign in to comment.