diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c92049c..f1747e0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,2 +1,7 @@ -test_app: +before_script: + - pip install -r requirements/base.txt + +test:python-3.4: + stage: test + image: python:3.4-slim script: python src/manage.py test * \ No newline at end of file diff --git a/requirements/base.txt b/requirements/base.txt new file mode 100644 index 0000000..68d357c --- /dev/null +++ b/requirements/base.txt @@ -0,0 +1 @@ +django \ No newline at end of file