Skip to content

Commit

Permalink
Adding whl's for Mac to .pex
Browse files Browse the repository at this point in the history
  • Loading branch information
pgoslatara committed Jul 18, 2024
1 parent d43353c commit c2d0bb7
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
Binary file modified dist/dbt-bouncer.pex
Binary file not shown.
22 changes: 20 additions & 2 deletions makefile
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

0 comments on commit c2d0bb7

Please sign in to comment.