Skip to content

Commit

Permalink
CICD: add integration and notebook tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrugman committed Dec 4, 2023
1 parent 6e56833 commit ecdef04
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,17 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[test-cov]
pip install -e .[spark,mlflow,test,test-notebook,test-cov]
- name: Lint with pre-commit
run: |
pip install pre-commit
pre-commit run --all-files --show-diff-on-failure
- name: Unit tests
run: |
pytest tests/unit/
- name: Integration tests
run: |
pytest tests/integration/
- name: Notebook tests
run: |
pytest tests/notebooks/

0 comments on commit ecdef04

Please sign in to comment.