summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2020-02-15 09:59:38 +0800
committerSebastian Thiel <sebastian.thiel@icloud.com>2020-02-15 09:59:38 +0800
commit2f9a799a6c9d125012bb09473bbfe6110f2a7391 (patch)
treeb39ba9a6d570dc0c605fc45cd0244f24830be851
parentc880f6b0550770eee559091d6276a2e2b097a83a (diff)
downloadgitdb-2f9a799a6c9d125012bb09473bbfe6110f2a7391.tar.gz
remove appveyor
It is slow, it fails, and windows support seems unmaintained, besides always having been an incredible time sink. Thanks to everyone who brought GitDb to where it is right now, and I am happy to bring windows testing back if a maintainer can be found.
-rw-r--r--.appveyor.yml49
1 files changed, 0 insertions, 49 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
deleted file mode 100644
index 2daadaa..0000000
--- a/.appveyor.yml
+++ /dev/null
@@ -1,49 +0,0 @@
-# CI on Windows via appveyor
-environment:
-
- matrix:
- ## MINGW
- #
- - PYTHON: "C:\\Python27"
- PYTHON_VERSION: "2.7"
- - PYTHON: "C:\\Python34-x64"
- PYTHON_VERSION: "3.4"
- - PYTHON: "C:\\Python35-x64"
- PYTHON_VERSION: "3.5"
- - PYTHON: "C:\\Miniconda35-x64"
- PYTHON_VERSION: "3.5"
- IS_CONDA: "yes"
-
-install:
- - set PATH=%PYTHON%;%PYTHON%\Scripts;%PATH%
-
- ## Print configuration for debugging.
- #
- - |
- echo %PATH%
- uname -a
- where python pip pip2 pip3 pip34
- python --version
- python -c "import struct; print(struct.calcsize('P') * 8)"
-
- - IF "%IS_CONDA%"=="yes" (
- conda info -a &
- conda install --yes --quiet pip
- )
- - pip install nose wheel coveralls
-
- ## For commits performed with the default user.
- - |
- git config --global user.email "travis@ci.com"
- git config --global user.name "Travis Runner"
-
- - pip install -e .
-
-build: false
-
-test_script:
- - IF "%PYTHON_VERSION%"=="3.5" (
- nosetests -v --with-coverage
- ) ELSE (
- nosetests -v
- )