diff --git a/.gitignore b/.gitignore index bf22f19..aebd4f5 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,4 @@ logs/ /static/ /media/ node_modules/ +/.coverage diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..75add4a --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,9 @@ +image: python:3.5 + +all_tests: + script: + - sh ./scripts/autoinstall.sh + - python3 manage.py test + when: on_success + only: + - development