Skip to content

Commit

Permalink
ci: include server extras in testing
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikBjare committed Oct 31, 2023
1 parent de1e94f commit 0277f83
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ jobs:
matrix:
os: [ubuntu-latest]
python_version: ['3.10']
extras: ['browser']
steps:
- uses: actions/checkout@v3
with:
Expand All @@ -36,12 +35,9 @@ jobs:
- name: Install dependencies
run: |
make build
poetry install -E "${{ matrix.extras }}"
- name: Install dependencies for extras
run: |
if [ "${{ matrix.extras }}" = "browser" ]; then
poetry run playwright install
fi
poetry install -E server -E browser
- name: Install playwright
run: poetry run playwright install
- name: Run tests
env:
TERM: xterm
Expand Down

0 comments on commit 0277f83

Please sign in to comment.