-
-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added appveyor.yml * remove x86 * change how envs are made * is it using the wrong python? * force python versions? * setup python correctly maybe? * use correct python now that path is et * fix build false * add badge remove 3.6 only going to test 3.7 for windows #speed * point this at correct branch * add appveyor badge * change to using correct build project for status * added webhook maybe? * changed build number info yo
- Loading branch information
Showing
2 changed files
with
44 additions
and
0 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
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,42 @@ | ||
|
||
version: 0.6.{build} | ||
pull_requests: | ||
do_not_increment_build_number: true | ||
|
||
skip_tags: true | ||
|
||
# Do not build feature branch with open Pull Requests | ||
skip_branch_with_pr: true | ||
|
||
|
||
environment: | ||
PYTHON_ARCH: "64" | ||
|
||
matrix: | ||
- PYTHON: "C:\\Python37-x64" | ||
PYTHON_VERSION: "3.7.4" | ||
|
||
install: | ||
# Prepend newly installed Python to the PATH of this build (this cannot be | ||
# done from inside the powershell script as it would require to restart | ||
# the parent CMD process). | ||
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%" | ||
- "SET PYTHONPATH=%PYTHON%\\Lib\\site-packages;%PYTHONPATH%" | ||
- python --version | ||
|
||
- python -m pip install --upgrade pip | ||
- pip install -r requirements.txt | ||
- pip install -r requirements-test.txt | ||
- python init.py | ||
|
||
build: false | ||
|
||
test_script: | ||
- pytest --cov=./ --ignore=protobuf-2.6.1/ | ||
|
||
|
||
notifications: | ||
- provider: GitHubPullRequest | ||
on_build_success: true | ||
on_build_failure: true | ||
on_build_status_changed: false |