forked from twisted/twisted
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/trunk' into src-move-8214-5
- Loading branch information
Showing
270 changed files
with
4,293 additions
and
1,420 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
*.o | ||
*.py[co] | ||
*.so | ||
*.DS_Store | ||
_trial_temp*/ | ||
build/ | ||
dropin.cache | ||
|
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,13 @@ | ||
#!/bin/bash | ||
set -e | ||
set -x | ||
|
||
if [[ "$(uname -s)" == 'Darwin' ]]; then | ||
curl -O https://bootstrap.pypa.io/get-pip.py | ||
python get-pip.py --user | ||
python -m pip install --user virtualenv | ||
python -m virtualenv ~/.venv | ||
source ~/.venv/bin/activate | ||
fi | ||
|
||
pip install $@ |
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,10 @@ | ||
#!/bin/bash | ||
set -e | ||
set -x | ||
|
||
if [[ "$(uname -s)" == "Darwin" ]]; then | ||
# Initialize the virtualenv created at install time. | ||
source ~/.venv/bin/activate | ||
fi | ||
|
||
tox -- $TOX_FLAGS |
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
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,58 @@ | ||
# | ||
# Some help for Python on AppVeyor: | ||
# * https://packaging.python.org/appveyor/ | ||
# * https://ci.appveyor.com/tools/validate-yaml | ||
|
||
version: '{branch}-{build}' | ||
|
||
# No need for Python. | ||
build: off | ||
# We don't report the test in XUnit tests or any other format supported by | ||
# AppVeyor. | ||
test: off | ||
|
||
# Don't build branch if there is an open PR, to prevent double builds. | ||
# For now, Appveyour will only build PR commits and not commits to master or | ||
# commits on random branches without an associated PR. | ||
skip_branch_with_pr: true | ||
|
||
# Not sure if the cache works. | ||
# Note the use of single quotes around the entire line, when environment | ||
# variables are used. | ||
cache: | ||
- '%LOCALAPPDATA%\pip\Cache' | ||
|
||
|
||
environment: | ||
global: | ||
TRIAL_REPORTER: text | ||
|
||
# Only use pre-installed Python versions, which Appveyor may upgrade to | ||
# a later point release. | ||
# See: http://www.appveyor.com/docs/installed-software#python | ||
matrix: | ||
- PYTHON: C:\Python27-x64 | ||
TOXENV: py27-coverage-windows,codecov-publish | ||
|
||
# Some tests are failing on Appveyor and they will be fixed in a separate | ||
# ticket. | ||
matrix: | ||
allow_failures: | ||
- PYTHON: C:\Python27-x64 | ||
|
||
install: | ||
# Get some information about the build environment. | ||
# Uncomment them. Left here so that you don't have to search the net for | ||
# how to run such command on Windows :) | ||
# - ps: "ls \"C:/\"" | ||
# - ps: "ls \"C:/Program Files/Microsoft SDKs/Windows\"" | ||
# - ps: echo $env:PYTHON $env:TOXENV | ||
# Check that we have the expected version and architecture for Python | ||
- "%PYTHON%\\python --version" | ||
- "%PYTHON%\\python -c \"import struct; print(struct.calcsize('P') * 8)\"" | ||
|
||
# The build system itself is handled by tox. | ||
- "%PYTHON%\\Scripts\\pip install tox" | ||
|
||
test_script: | ||
- "%PYTHON%\\python -m tox -e %TOXENV%" |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
Oops, something went wrong.