-
Notifications
You must be signed in to change notification settings - Fork 2
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
1 parent
d43353c
commit c2d0bb7
Showing
2 changed files
with
20 additions
and
2 deletions.
There are no files selected for viewing
Binary file not shown.
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 |
---|---|---|
@@ -1,5 +1,23 @@ | ||
build-pex: | ||
poetry run pex . -c dbt-bouncer -o ./dist/dbt-bouncer.pex --python-shebang='/usr/bin/env python' | ||
poetry run pex . \ | ||
-c dbt-bouncer \ | ||
-o ./dist/dbt-bouncer.pex \ | ||
--python-shebang='/usr/bin/env python' \ | ||
--platform macosx_11_0_x86_64-cp-38-cp38 \ | ||
--platform macosx_11_0_x86_64-cp-39-cp39 \ | ||
--platform macosx_11_0_x86_64-cp-310-cp310 \ | ||
--platform macosx_11_0_x86_64-cp-311-cp311 \ | ||
--platform macosx_11_0_x86_64-cp-312-cp312 \ | ||
--platform manylinux2014_x86_64-cp-38-cp38 \ | ||
--platform manylinux2014_x86_64-cp-39-cp39 \ | ||
--platform manylinux2014_x86_64-cp-310-cp310 \ | ||
--platform manylinux2014_x86_64-cp-311-cp311 \ | ||
--platform manylinux2014_x86_64-cp-312-cp312 | ||
|
||
test: | ||
poetry run pytest --junitxml=coverage.xml --cov-report=term-missing:skip-covered --cov=dbt_bouncer/ ./tests --numprocesses 5 | ||
poetry run pytest \ | ||
--junitxml=coverage.xml \ | ||
--cov-report=term-missing:skip-covered \ | ||
--cov=dbt_bouncer/ \ | ||
--numprocesses 5 \ | ||
./tests |