Skip to content

Commit

Permalink
install nomad in tests
Browse files Browse the repository at this point in the history
install uv in test
  • Loading branch information
lukaspie committed Oct 11, 2024
1 parent 960d3ca commit 64931d1
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,15 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python_version }}
- name: Install package
- name: Install uv
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
- name: Install nomad
if: "${{ matrix.python_version != '3.8' && matrix.python_version != '3.12'}}"
run: |
uv pip install nomad-lab@git+https://gitlab.mpcdf.mpg.de/nomad-lab/nomad-FAIR.git
- name: Install package
run: |
uv pip install ".[dev]"
- name: Test with pytest
run: |
Expand Down

0 comments on commit 64931d1

Please sign in to comment.