We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcad688 commit 9044911Copy full SHA for 9044911
.github/workflows/ci.yml
@@ -26,8 +26,7 @@ jobs:
26
- name: Install dependencies on macOS
27
if: startsWith(matrix.os, 'macos')
28
run: |
29
- python3 -m venv ${PYTHON_VENV_ROOT}
30
- source ${PYTHON_VENV_ROOT}/bin/activate
+ conda activate test
31
python --version
32
python3 -m pip install pip --upgrade
33
python3 -m pip install pytest pytest-cov
@@ -44,10 +43,8 @@ jobs:
44
43
- name: Run tests on ${{ matrix.os }}
45
if: startsWith(matrix.os, 'ubuntu') || startsWith(matrix.os, 'macos')
46
47
- if [ "$RUNNER_OS" == "macOS" ]; then
48
49
50
- fi
+ python --version
51
echo -e "Running tests"
52
pytest tests/*.py
53
0 commit comments