Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

disable buidling/deployment of python wheels #583

Merged
merged 13 commits into from
Aug 23, 2017
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
[ci] only run 'python setup.py test'
if we run 'python setup.py built test', the setuptools 'test' command will
forcibly re-run the build_ext subcommand because it wants to pass the --inplace
option (it ignores whether it's up to date, just re-runs it all the time).

with this we go from running built_ext twice, to running it only once per build
  • Loading branch information
anthrotype committed Aug 8, 2017
commit 384f8b6443f42ae7b1206802eadcdf312dc0558e
2 changes: 1 addition & 1 deletion scripts/.travis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ case "$1" in
ctest -V
;;
"python")
python setup.py build test
python setup.py test
;;
"maven")
cd java/org/brotli
Expand Down
2 changes: 1 addition & 1 deletion scripts/appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,4 @@ build_script:

test_script:
- if "%BUILD_SYSTEM%" == "CMake" ( ctest --output-on-failure --interactive-debug-mode 0 -C Debug )
- if "%BUILD_SYSTEM%" == "Python" ( python setup.py build test )
- if "%BUILD_SYSTEM%" == "Python" ( python setup.py test )