Skip to content

Commit

Permalink
Check numpy version
Browse files Browse the repository at this point in the history
  • Loading branch information
bernstei committed Mar 6, 2024
1 parent 76d04da commit b00b822
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/pytests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,12 @@ jobs:
python3 --version
- name: Install dependencies from pip
run: python3 -m pip install wheel setuptools numpy scipy click matplotlib pandas pyyaml spglib rdkit flake8 pytest pytest-cov
run: python3 -m pip install wheel setuptools numpy scipy click matplotlib pandas pyyaml spglib rdkit flake8 pytest pytest-cov requests

- name: Check numpy
run: |
python3 -m pip list | grep numpy
python3 -c "import numpy; print(numpy.__file__, numpy.__version__)"
- name: Install latest ASE from gitlab
run: |
Expand Down Expand Up @@ -203,6 +208,10 @@ jobs:
- name: Test with pytest - coverage
if: env.coverage-on-version == matrix.python-version
run: |
echo "BOB pre actual pytest"
which python3
python3 -m pip list | grep numpy
python3 -c "import numpy; print(numpy.__file__, numpy.__version__)"
rm -rf $HOME/pytest_cov
mkdir $HOME/pytest_cov
#
Expand Down

0 comments on commit b00b822

Please sign in to comment.