#image: ubuntu:artful image: debian:testing stages: - test variables: DOCKER_DRIVER: overlay before_script: - apt-get update - chmod +x ci/*.sh - ci/install_basics.sh - pip install --process-dependency-links --upgrade -r ci/requirements.txt - pip3 install --process-dependency-links --upgrade -r ci/requirements.txt test_min: stage: test script: - python setup.py install --user -f - python3 setup.py install --user -f - nosetests - nosetests3 -x --with-coverage --cover-package=nifty2go --cover-branches - > coverage report | grep TOTAL | awk '{ print "TOTAL: "$6; }'