Skip to content

Commit

Permalink
fix n°2
Browse files Browse the repository at this point in the history
  • Loading branch information
Plogeur committed Dec 17, 2024
1 parent ca1c4d9 commit 5c238cc
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,19 +24,22 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: '3.10'

# Step 3: Install dependencies
- name: Install dependencies and libbdsg
- name: Install build tools
run: |
python -m pip install --upgrade pip
# Install libbdsg by cloning and installing from its directory
pip install setuptools wheel setuptools_scm
- name: Install libbdsg
run: |
git clone --recursive https://github.com/vgteam/libbdsg.git
cd libbdsg
pip install .
cd ..
# Install other dependencies from requirements.txt
pip install -r requirements.txt
# Step 4: Run tests
- name: Install dependencies
run: pip install -r requirements.txt

- name: Run tests
run: pytest
run: pytest

0 comments on commit 5c238cc

Please sign in to comment.