-
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.
Merge pull request #35 from godatadriven/multi-platform-support
Adding whl's for Mac to .pex
- Loading branch information
Showing
3 changed files
with
21 additions
and
3 deletions.
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
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 |