Skip to content

Commit

Permalink
Let's see if FakeS3 is even visible on AppVeyor ...
Browse files Browse the repository at this point in the history
  • Loading branch information
xolox committed Nov 11, 2015
1 parent 328266b commit 83f0af1
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
1 change: 1 addition & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ install:
- cmd: 'scripts\prepare-test-environment.cmd'
build: off
test_script:
- cmd: '"%PYTHON%\python.exe" scripts\appveyor.py'
- cmd: 'DIR "%PYTHON%\Scripts'
- cmd: '"%PYTHON%\Scripts\py.test.exe"'
on_success:
Expand Down
22 changes: 22 additions & 0 deletions scripts/appveyor.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Simple Python script that helps to understand the AppVeyor environment.
#
# Author: Peter Odding <peter.odding@paylogic.com>
# Last Change: November 11, 2015
# URL: https://github.com/paylogic/pip-accel

"""Introspection of the AppVeyor CI environment ..."""

# Standard library modules.
import os

# External dependencies.
from humanfriendly import concatenate

# Test dependencies.
from executor import get_search_path, which

print("FakeS3 executables:\n%r" % which('fakes3'))
print("Executable search path:\n\n%s" % "\n\n".join(
"%s:\n%s" % (d, concatenate(sorted(os.listdir(d))))
for d in get_search_path()
))

0 comments on commit 83f0af1

Please sign in to comment.