diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b07ec9de5..1233f765d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -23,10 +23,13 @@ jobs: #alias conda="$CONDA/bin/conda" conda create -n zerod python=3.11.4 conda run -n zerod pip install -e ".[dev]" + - name: Install Networkx + run: | + conda run -n zerod pip install networkx - name: Test the build run: | cd tests - conda run -n zerod pytest -v --durations=0 --ignore=tests/test_dirgraph.py + conda run pytest -v --durations=0 - name: Build using CMake run: | mkdir Release