summaryrefslogtreecommitdiffstats
path: root/appveyor.yml
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-15 16:35:31 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-15 16:35:31 +0000
commit4f1a3b5f9ad05aa7b08715d48909a2b06ee2fcb1 (patch)
treee5dee7be2f0d963da4faad6517278d03783e3adc /appveyor.yml
parentInitial commit. (diff)
downloadprompt-toolkit-4f1a3b5f9ad05aa7b08715d48909a2b06ee2fcb1.tar.xz
prompt-toolkit-4f1a3b5f9ad05aa7b08715d48909a2b06ee2fcb1.zip
Adding upstream version 3.0.43.upstream/3.0.43upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml45
1 files changed, 45 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml
new file mode 100644
index 0000000..892b186
--- /dev/null
+++ b/appveyor.yml
@@ -0,0 +1,45 @@
+environment:
+ matrix:
+ - PYTHON: "C:\\Python36"
+ PYTHON_VERSION: "3.6"
+ - PYTHON: "C:\\Python36-x64"
+ PYTHON_VERSION: "3.6"
+
+ - PYTHON: "C:\\Python35"
+ PYTHON_VERSION: "3.5"
+ - PYTHON: "C:\\Python35-x64"
+ PYTHON_VERSION: "3.5"
+
+ - PYTHON: "C:\\Python34"
+ PYTHON_VERSION: "3.4"
+ - PYTHON: "C:\\Python34-x64"
+ PYTHON_VERSION: "3.4"
+
+ - PYTHON: "C:\\Python33"
+ PYTHON_VERSION: "3.3"
+ - PYTHON: "C:\\Python33-x64"
+ PYTHON_VERSION: "3.3"
+
+ - PYTHON: "C:\\Python27"
+ PYTHON_VERSION: "2.7"
+ - PYTHON: "C:\\Python27-x64"
+ PYTHON_VERSION: "2.7"
+
+ - PYTHON: "C:\\Python26"
+ PYTHON_VERSION: "2.6"
+ - PYTHON: "C:\\Python27-x64"
+ PYTHON_VERSION: "2.6"
+
+install:
+ - "set PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
+ - pip install . pytest coverage codecov flake8
+ - pip list
+
+build: false
+
+test_script:
+ - If not ($env:PYTHON_VERSION==2.6) flake8 prompt_toolkit
+ - coverage run -m pytest
+
+after_test:
+ - codecov