summaryrefslogtreecommitdiff
path: root/.appveyor.yml
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2021-07-14 07:43:41 +0800
committerSebastian Thiel <sebastian.thiel@icloud.com>2021-07-14 07:45:05 +0800
commitcf9b511ac3386910b695fa6482b7488802f77eb2 (patch)
tree52a90b1f3e841d3e73d74d70ab1170b5388ee1aa /.appveyor.yml
parent63f5541c183a22b0aff012c9b0c7df76142d63fa (diff)
downloadgitpython-cf9b511ac3386910b695fa6482b7488802f77eb2.tar.gz
Remove docker and appveyor configuration files
These weren't used by CI nor were they regularly tested. If somebody misses something, we can bring them back of course. This cleanup was triggered with the switch to pytest, and I wanted to remove everything that was present just for nosetest.
Diffstat (limited to '.appveyor.yml')
-rw-r--r--.appveyor.yml73
1 files changed, 0 insertions, 73 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
deleted file mode 100644
index 833f5c7b..00000000
--- a/.appveyor.yml
+++ /dev/null
@@ -1,73 +0,0 @@
-# UNUSED, only for reference. If windows testing is needed, please add that to github actions
-# CI on Windows via appveyor
-environment:
- GIT_DAEMON_PATH: "C:\\Program Files\\Git\\mingw64\\libexec\\git-core"
- CYGWIN_GIT_PATH: "C:\\cygwin\\bin;%GIT_DAEMON_PATH%"
- CYGWIN64_GIT_PATH: "C:\\cygwin64\\bin;%GIT_DAEMON_PATH%"
-
- matrix:
- - PYTHON: "C:\\Python36-x64"
- PYTHON_VERSION: "3.6"
- GIT_PATH: "%GIT_DAEMON_PATH%"
- - PYTHON: "C:\\Python37-x64"
- PYTHON_VERSION: "3.7"
- GIT_PATH: "%GIT_DAEMON_PATH%"
-
-matrix:
- allow_failures:
- - MAYFAIL: "yes"
-install:
- - set PATH=%PYTHON%;%PYTHON%\Scripts;%GIT_PATH%;%PATH%
-
- ## Print configuration for debugging.
- #
- - |
- echo %PATH%
- uname -a
- git --version
- where git git-daemon python pip pip3 pip34 sh
- 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 -r requirements.txt
- - pip install -r test-requirements.txt
- - pip install codecov
-
- ## Copied from `init-tests-after-clone.sh`.
- #
- - |
- git submodule update --init --recursive
- git fetch --tags
- git tag __testing_point__
- git checkout master || git checkout -b master
- git reset --hard HEAD~1
- git reset --hard HEAD~1
- git reset --hard HEAD~1
- git reset --hard __testing_point__
-
- ## 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:
- - nosetests -v
-
-on_success:
- - IF "%PYTHON_VERSION%" == "3.6" IF NOT "%IS_CYGWIN%" == "yes" (codecov)
-
-# Enable this to be able to login to the build worker. You can use the
-# `remmina` program in Ubuntu, use the login information that the line below
-# prints into the log.
-#on_finish:
-# - |
-# echo "Running on_finish to establish connection back to the instance"
-# - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))