summaryrefslogtreecommitdiffstats
path: root/dead_code/appveyor.yml
diff options
context:
space:
mode:
Diffstat (limited to 'dead_code/appveyor.yml')
-rw-r--r--dead_code/appveyor.yml27
1 files changed, 27 insertions, 0 deletions
diff --git a/dead_code/appveyor.yml b/dead_code/appveyor.yml
new file mode 100644
index 0000000..8b7d1c9
--- /dev/null
+++ b/dead_code/appveyor.yml
@@ -0,0 +1,27 @@
+# Configure.
+environment:
+ PATH: C:\%PYTHON%;C:\%PYTHON%\Scripts;%PATH%
+ PYTHON: Python35
+ matrix:
+ - TOX_ENV: lint
+ - TOX_ENV: py35
+ - TOX_ENV: py34
+ - TOX_ENV: py33
+ - TOX_ENV: py27
+ - TOX_ENV: py
+ PYTHON: Python35-x64
+ - TOX_ENV: py
+ PYTHON: Python34-x64
+ - TOX_ENV: py
+ PYTHON: Python33-x64
+ - TOX_ENV: py
+ PYTHON: Python27-x64
+
+# Run.
+build_script: pip install tox
+test_script: tox -e %TOX_ENV%
+on_success: IF %TOX_ENV% NEQ lint pip install codecov & codecov
+
+# Post.
+on_finish:
+ - FOR %%F IN (test*.png) DO appveyor PushArtifact %%F