Skip to content

Commit

Permalink
Sigh
Browse files Browse the repository at this point in the history
  • Loading branch information
CalebBell committed Aug 4, 2024
1 parent cae66b0 commit 4a79821
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/build-multiarch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,12 +86,15 @@ jobs:
# If the exit status is 0 (True), this means the option is not supported
python3 -m pip install wheel
pip3 install -r requirements_test_multiarch.txt
pip3 install .
python3 dev/dump_UNIFAC_assignments_to_sqlite.py
pip3 uninstall -y thermo
else
# If the exit status is 1 (False), this means the option is supported
python3 -m pip install wheel --break-system-packages
pip3 install -r requirements_test_multiarch.txt --break-system-packages
pip3 install . --break-system-packages
python3 dev/dump_UNIFAC_assignments_to_sqlite.py
pip3 uninstall -y thermo --break-system-packages
fi
pip3 install .
python3 dev/dump_UNIFAC_assignments_to_sqlite.py
pip3 uninstall -y thermo
python3 -m pytest . -v -m "not online and not sympy and not numba and not CoolProp and not fuzz and not deprecated and not slow"

0 comments on commit 4a79821

Please sign in to comment.