From d0add1edeb7d7359c0c92bdf076c98d5c4747d74 Mon Sep 17 00:00:00 2001 From: John Gardner Date: Sat, 15 Feb 2025 09:54:44 +0000 Subject: [PATCH] fix --- .github/workflows/tests.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index d25ce2f..942afd9 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -126,10 +126,10 @@ jobs: cache-dependency-glob: "uv.lock" - name: Install graph-pes and required dependencies - run: uv sync --extra test + run: uv pip install --system --upgrade ".[test]" - name: Install mace-torch - run: uv pip install mace-torch torch==2.5 # TODO: unfix this version + run: uv pip install --system mace-torch torch==2.5 # TODO: unfix this version - name: Run tests run: uv run pytest src/graph_pes/interfaces/mace_test.py -vvv @@ -149,10 +149,10 @@ jobs: cache-dependency-glob: "uv.lock" - name: Install graph-pes and required dependencies - run: uv sync --extra test + run: uv pip install --system --upgrade ".[test]" - name: Install mattersim - run: uv pip install mattersim==1.0.0 + run: uv pip install --system mattersim==1.0.0 - name: Run tests run: uv run pytest src/graph_pes/interfaces/mattersim_test.py -vvv