summaryrefslogtreecommitdiff
path: root/.appveyor.yml
diff options
context:
space:
mode:
authorKostis Anagnostopoulos <ankostis@gmail.com>2016-09-29 01:07:41 +0200
committerKostis Anagnostopoulos <ankostis@gmail.com>2016-09-29 01:46:15 +0200
commit395955609dfd711cc4558e2b618450f3514b28c1 (patch)
tree9ee15a36cbc05f9b509aedbda2373cfc0ace2d17 /.appveyor.yml
parentf1d2d0683afa6328b6015c6a3aa6a6912a055756 (diff)
downloadgitpython-395955609dfd711cc4558e2b618450f3514b28c1.tar.gz
FIX hook TC on PY3+Win & indeterministic lock timing.
+ Cannot `index.path` into ENV, it is bytes! + The hook TC never runs on linux! + Unblock removal of odbfile in perf-large streams TC. + Attempt to unblock removal of submodule file by intensive cleaning. more unblock files
Diffstat (limited to '.appveyor.yml')
-rw-r--r--.appveyor.yml34
1 files changed, 19 insertions, 15 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
index 8ca22ea9..3a8c76aa 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -5,32 +5,36 @@ environment:
CYGWIN64_GIT_PATH: "C:\\cygwin64\\bin;%GIT_DAEMON_PATH%"
matrix:
+ ## MINGW
+ #
- PYTHON: "C:\\Python27"
PYTHON_VERSION: "2.7"
GIT_PATH: "%GIT_DAEMON_PATH%"
- - PYTHON: "C:\\Miniconda-x64"
- PYTHON_VERSION: "2.7"
- IS_CONDA: "yes"
- GIT_PATH: "%CYGWIN_GIT_PATH%"
-
- PYTHON: "C:\\Python34-x64"
PYTHON_VERSION: "3.4"
GIT_PATH: "%GIT_DAEMON_PATH%"
- - PYTHON: "C:\\Python34-x64"
- PYTHON_VERSION: "3.4"
- GIT_PATH: "%CYGWIN_GIT_PATH%"
-
- PYTHON: "C:\\Python35-x64"
PYTHON_VERSION: "3.5"
GIT_PATH: "%GIT_DAEMON_PATH%"
- - PYTHON: "C:\\Python35-x64"
- PYTHON_VERSION: "3.5"
- GIT_PATH: "%CYGWIN64_GIT_PATH%"
- PYTHON: "C:\\Miniconda35-x64"
PYTHON_VERSION: "3.5"
IS_CONDA: "yes"
GIT_PATH: "%GIT_DAEMON_PATH%"
+ ## Cygwin
+ #
+ - PYTHON: "C:\\Miniconda-x64"
+ PYTHON_VERSION: "2.7"
+ IS_CONDA: "yes"
+ GIT_PATH: "%CYGWIN_GIT_PATH%"
+ - PYTHON: "C:\\Python34-x64"
+ PYTHON_VERSION: "3.4"
+ GIT_PATH: "%CYGWIN_GIT_PATH%"
+ - PYTHON: "C:\\Python35-x64"
+ PYTHON_VERSION: "3.5"
+ GIT_PATH: "%CYGWIN64_GIT_PATH%"
+
+
install:
- set PATH=%PYTHON%;%PYTHON%\Scripts;%GIT_PATH%;%PATH%
@@ -44,9 +48,9 @@ install:
- IF "%IS_CONDA%"=="yes" (
conda info -a &
- conda install --yes --quiet pip
+ conda install --yes --quiet pip
)
- - pip install nose ddt wheel coveralls
+ - pip install nose ddt wheel coveralls
- IF "%PYTHON_VERSION%"=="2.7" (
pip install mock
)
@@ -73,7 +77,7 @@ install:
build: false
test_script:
- - nosetests -v
+ - nosetests
#on_success:
# - IF "%PYTHON_VERSION%"=="3.4" (coveralls)