Skip to content
Permalink
Browse files
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.
  • Loading branch information
Byron committed Jul 13, 2021
1 parent 63f5541 commit cf9b511ac3386910b695fa6482b7488802f77eb2
Showing with 3 additions and 195 deletions.
  1. +0 −73 .appveyor.yml
  2. +0 −2 .dockerignore
  3. +1 −10 .github/workflows/pythonpackage.yml
  4. +0 −84 Dockerfile
  5. +2 −16 Makefile
  6. +0 −10 dockernose.sh

This file was deleted.

This file was deleted.

@@ -68,13 +68,4 @@ jobs:
run: |
set -x
pip install -r doc/requirements.txt
make -C doc html
# - name: Test with nose
# run: |
# set -x
# pip install nose
# nosetests -v --with-coverage
# continue-on-error: false


make -C doc html

This file was deleted.

@@ -1,4 +1,4 @@
.PHONY: all clean release force_release docker-build test nose-pdb
.PHONY: all clean release force_release

all:
@grep -Ee '^[a-z].*:' Makefile | cut -d: -f1 | grep -vF all
@@ -17,18 +17,4 @@ release: clean
force_release: clean
git push --tags origin main
python3 setup.py sdist bdist_wheel
twine upload -s -i 27C50E7F590947D7273A741E85194C08421980C9 dist/*

docker-build:
docker build --quiet -t gitpython:xenial -f Dockerfile .

test: docker-build
# NOTE!!!
# NOTE!!! If you are not running from main or have local changes then tests will fail
# NOTE!!!
docker run --rm -v ${CURDIR}:/src -w /src -t gitpython:xenial tox

nose-pdb: docker-build
# run tests under nose and break on error or failure into python debugger
# HINT: set PYVER to "pyXX" to change from the default of py37 to pyXX for nose tests
docker run --rm --env PYVER=${PYVER} -v ${CURDIR}:/src -w /src -it gitpython:xenial /bin/bash dockernose.sh
twine upload -s -i 27C50E7F590947D7273A741E85194C08421980C9 dist/*

This file was deleted.

0 comments on commit cf9b511

Please sign in to comment.