-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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 #2060 from pytest-dev/master
Merge master into features due to recent CI updates
- Loading branch information
Showing
7 changed files
with
59 additions
and
17 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
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,21 @@ | ||
""" | ||
Script used by tox.ini to check the manifest file if we are under version control, or skip the | ||
check altogether if not. | ||
"check-manifest" will needs a vcs to work, which is not available when testing the package | ||
instead of the source code (with ``devpi test`` for example). | ||
""" | ||
|
||
from __future__ import print_function | ||
|
||
import os | ||
import subprocess | ||
import sys | ||
|
||
|
||
if os.path.isdir('.git'): | ||
sys.exit(subprocess.call('check-manifest', shell=True)) | ||
else: | ||
print('No .git directory found, skipping checking the manifest file') | ||
sys.exit(0) | ||
|
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,6 @@ | ||
REM install pypy using choco | ||
REM redirect to a file because choco install python.pypy is too noisy. If the command fails, write output to console | ||
choco install python.pypy > pypy-inst.log 2>&1 || (type pypy-inst.log & exit /b 1) | ||
set PATH=C:\tools\pypy\pypy;%PATH% # so tox can find pypy | ||
echo PyPy installed | ||
pypy --version |
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