Skip to content

Commit

Permalink
Update GitHub Actions workflow to use Poetry for dependency management
Browse files Browse the repository at this point in the history
  • Loading branch information
sisoe24 committed Aug 21, 2024
1 parent be0d4a1 commit 1025c6a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 143 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/github_tests_actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install poetry
poetry install
- name: Install Qt and X11 dependencies
run: |
Expand All @@ -64,4 +65,4 @@ jobs:

- name: Run tests with xvfb
run: |
xvfb-run --auto-servernum python -m pytest
xvfb-run --auto-servernum python -m poetry run pytest
141 changes: 0 additions & 141 deletions requirements.txt

This file was deleted.

0 comments on commit 1025c6a

Please sign in to comment.