Skip to content

Commit

Permalink
re-enable all tests on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
giampaolo committed May 15, 2016
1 parent 0e3dd41 commit 770b6b3
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 33 deletions.
2 changes: 1 addition & 1 deletion .ci/appveyor/download_exes.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
def safe_makedirs(path):
try:
os.makedirs(path)
except OSError, err:
except OSError as err:
if err.errno == errno.EEXIST:
if not os.path.isdir(path):
raise
Expand Down
58 changes: 26 additions & 32 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,44 +18,38 @@ environment:
PYTHON_VERSION: "2.7.x"
PYTHON_ARCH: "32"

# - PYTHON: "C:\\Python33"
# PYTHON_VERSION: "3.3.x"
# PYTHON_ARCH: "32"

# - PYTHON: "C:\\Python34"
# PYTHON_VERSION: "3.4.x"
# PYTHON_ARCH: "32"
- PYTHON: "C:\\Python33"
PYTHON_VERSION: "3.3.x"
PYTHON_ARCH: "32"

# - PYTHON: "C:\\Python35"
# PYTHON_VERSION: "3.5.x"
# PYTHON_ARCH: "32"
- PYTHON: "C:\\Python34"
PYTHON_VERSION: "3.4.x"
PYTHON_ARCH: "32"

# # 64 bits
- PYTHON: "C:\\Python35"
PYTHON_VERSION: "3.5.x"
PYTHON_ARCH: "32"

# - PYTHON: "C:\\Python27-x64"
# PYTHON_VERSION: "2.7.x"
# PYTHON_ARCH: "64"
# 64 bits

# - PYTHON: "C:\\Python33-x64"
# PYTHON_VERSION: "3.3.x"
# PYTHON_ARCH: "64"
- PYTHON: "C:\\Python27-x64"
PYTHON_VERSION: "2.7.x"
PYTHON_ARCH: "64"

# - PYTHON: "C:\\Python34-x64"
# PYTHON_VERSION: "3.4.x"
# PYTHON_ARCH: "64"
- PYTHON: "C:\\Python33-x64"
PYTHON_VERSION: "3.3.x"
PYTHON_ARCH: "64"

# - PYTHON: "C:\\Python35-x64"
# PYTHON_VERSION: "3.5.x"
# PYTHON_ARCH: "64"
# ARCH: x86_64
# VS_VER: "2015"
# INSTANCENAME: "SQL2012SP1"
- PYTHON: "C:\\Python34-x64"
PYTHON_VERSION: "3.4.x"
PYTHON_ARCH: "64"

# XXX - not sure how to fix this:
# https://ci.appveyor.com/project/giampaolo/psutil/build/354/job/uqf3rms55mrv90ju
# - PYTHON: "C:\\Python35-x64"
# PYTHON_VERSION: "3.5.x"
# PYTHON_ARCH: "64"
- PYTHON: "C:\\Python35-x64"
PYTHON_VERSION: "3.5.x"
PYTHON_ARCH: "64"
ARCH: x86_64
VS_VER: "2015"
INSTANCENAME: "SQL2012SP1"

# Also build on a Python version not pre-installed by Appveyor.
# See: https://github.com/ogrisel/python-appveyor-demo/issues/10
Expand Down Expand Up @@ -83,8 +77,8 @@ install:
build: off

test_script:
# - "%WITH_COMPILER% %PYTHON%/python psutil/tests/runner.py"
- "%WITH_COMPILER% %PYTHON%/python -V"
- "%WITH_COMPILER% %PYTHON%/python psutil/tests/runner.py"

after_test:
- "%WITH_COMPILER% %PYTHON%/python setup.py bdist_wheel"
Expand Down

0 comments on commit 770b6b3

Please sign in to comment.