Skip to content

Commit 3ac94be

Browse files
committed
TOX: Override install_command separately for x64/x86
1 parent 39fa57d commit 3ac94be

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tox.ini

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,14 @@ ARCH =
4545
description = Pytest with coverage
4646
labels = test
4747
install_command =
48-
python -I -m pip install \
48+
x64: python -I -m pip install -v \
4949
--only-binary numpy,scipy,h5py,pillow \
5050
--extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple \
5151
{opts} {packages}
52+
x86: python -I -m pip install -v \
53+
--only-binary numpy,scipy,h5py,pillow,matplotlib \
54+
--extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple \
55+
{opts} {packages}
5256
pip_pre =
5357
pre: true
5458
pass_env =

0 commit comments

Comments
 (0)