Skip to content

Commit

Permalink
fixing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pmaher86 committed Sep 24, 2023
1 parent 71edcac commit 4270ace
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,15 @@ jobs:
cache: pip

- name: Install dependencies
run: pip install -r requirements.txt
run: |
pip install --upgrade pip
pip install -r requirements.txt
- name: Install wkhtmltopdf
run: sudo apt-get -y install wkhtmltopdf

- name: Install package
run: pip install .[dev]

- name: Test with pytest
run: pytest -vv

0 comments on commit 4270ace

Please sign in to comment.