-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
103 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/usr/bin/env bash | ||
|
||
echo "┏━━━ Running pyright ━━━━━━━━━━━━━━━━━━━" | ||
pyright | ||
|
||
echo "┏━━━ Running black ━━━━━━━━━━━━━━━━━━━" | ||
black src/data_pipeline | ||
black tests | ||
|
||
echo "┏━━━ Running ruff ━━━━━━━━━━━━━━━━━━━" | ||
ruff src/data_pipeline | ||
ruff tests --fix | ||
|
||
echo "┏━━━ Running pytest ━━━━━━━━━━━━━━━━━━━" | ||
pytest -m only |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
[pytest] | ||
testpaths = | ||
tests | ||
addopts = --strict -W ignore -v -s --durations=0 | ||
markers = | ||
only: marked with "only" | ||
long: takes a long time | ||
broken: test is broken |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters