services: - mysql:latest stages: - test - lint variables: MYSQL_DATABASE: go MYSQL_ROOT_PASSWORD: root before_script: - apt-get update -qy - apt-get install -y mysql-client libmysqlclient-dev python-mysqldb redis-server - pip install -r requirements/ci.txt - nohup redis-server & - cd go/ - export GO_SECRET_KEY=$(dd if=/dev/urandom count=100 | tr -dc "A-Za-z0-9" | fold -w 60 | head -n1 2>/dev/null) - export GO_DB_NAME="go" - export GO_DB_USER="root" - export GO_DB_PASSWORD="root" - export GO_DB_HOST="mysql" - export GO_DB_PORT=3306 - export GO_ALLOWED_HOSTS="*" - export GO_EMAIL_DOMAIN="@masonlive.gmu.edu" - export GO_CAS_URL="https://cas.srct.gmu.edu/" - export GO_EMAIL_HOST= - export GO_EMAIL_PORT= - export GO_EMAIL_HOST_USER= - export GO_EMAIL_HOST_PASSWORD= - export GO_EMAIL_FROM= - export GO_EMAIL_TO= - python manage.py makemigrations - python manage.py makemigrations go - python manage.py migrate - echo "from django.contrib.auth import get_user_model; User = get_user_model(); User.objects.create_superuser('root', 'root@srct.gmu.edu', 'root') " | python manage.py shell Go-py2.7: image: library/python:2.7 stage: test script: - python manage.py test Go-py3.4: image: library/python:3.4 stage: test script: - python manage.py test Go-py3.5: image: library/python:3.5 stage: test script: - python manage.py test #Go-py3.6: # image: library/python:3.6 # stage: test # script: # - if pip list --outdated | grep "Latest" | wc -l > 0; then pip list --outdated && exit 1; else exit 0; fi # - coverage run --source=go --omit=*migrations/*,*admin.py,*manage.py,*wsgi.py,*settings.py,*secret.py,*__init__.py,*.pyc,*templates/*,*static/* manage.py test # - coverage html -i && grep pc_cov htmlcov/index.html | egrep -o "[0-9]+\%" | awk '{ print "covered " $1;}' Go-flake8: image: library/python:3.5 stage: lint script: - pip install flake8 - flake8 go/ --statistics --exit-zero