Skip to content

Commit

Permalink
fix: update CI workflow to install dev dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
siddharth7113 committed Dec 7, 2024
1 parent 46d31aa commit 8873244
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
- cron: "0 12 * * 1"
pull_request_target:
types: [opened, synchronize, reopened, ready_for_review]

jobs:
call-run-python-tests:
uses: openclimatefix/.github/.github/workflows/python-test.yml@issue/pip-all
Expand All @@ -16,4 +17,9 @@ jobs:
pytest_cov_dir: "neso_solar_consumer"
os_list: '["ubuntu-latest"]'
python-version: "['3.11']"
pytest_numcpus: '1'
pytest_numcpus: '1'
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install dependencies
run: pip install .[dev] # Install with dev dependencies

0 comments on commit 8873244

Please sign in to comment.