Skip to content

Commit

Permalink
Use python slim images to run tests
Browse files Browse the repository at this point in the history
This should speed-up the tests a bit
  • Loading branch information
mayeut committed May 22, 2021
1 parent 0c59594 commit 71f0837
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/test_manylinux.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
PYTHON_ABI_MAJ_MIN = ''.join(PYTHON_MAJ_MIN)
PYTHON_ABI_FLAGS = 'm' if sys.version_info.minor < 8 else ''
PYTHON_ABI = f'cp{PYTHON_ABI_MAJ_MIN}-cp{PYTHON_ABI_MAJ_MIN}{PYTHON_ABI_FLAGS}'
PYTHON_IMAGE_ID = 'python:' + '.'.join(PYTHON_MAJ_MIN)
PYTHON_IMAGE_ID = f'python:{".".join(PYTHON_MAJ_MIN)}-slim'
DEVTOOLSET = {
'manylinux_2_5': 'devtoolset-2',
'manylinux_2_12': 'devtoolset-8',
Expand Down

0 comments on commit 71f0837

Please sign in to comment.