Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ jobs:
run: poetry install

- name: Run tests
run: poetry run pytest tests/ -v --cov=pygaborstm --cov-report=term-missing
run: poetry run pytest tests/ -v -m "not gpu" --cov=pygaborstm --cov-report=term-missing
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,6 @@ ENV/
logs/
outputs/
checkpoints/
*.log
*.log

images/
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,8 @@ PyGaborSTM/
```bash
poetry install # Install all dependencies
poetry run jupyter notebook # Run notebooks
poetry run pytest -v # Run tests
pytest -m "not gpu" # Run all tests exluding GPU kernel tests (used in CI/CD)
poetry run pytest -v # Run all tests including GPU kernel tests
poetry run ruff check --fix . # lint and fix
poetry run ruff format . # format code
```
Expand Down
Loading
Loading