15 lines
254 B
YAML
15 lines
254 B
YAML
image: python:3.6
|
|
variables:
|
|
GIT_SUBMODULE_STRATEGY: normal
|
|
|
|
install:
|
|
stage: build
|
|
script:
|
|
- pip install pipenv
|
|
- pipenv install
|
|
- pipenv run ./manage.py collectstatic --no-input
|
|
|
|
pytest:
|
|
stage: test
|
|
script:
|
|
- pipenv run pytest
|