Commit 701eb771 authored by James Kirk's avatar James Kirk
Browse files

refactor: only prevent cache when testing

2 merge requests!23Resolve "Release v0.1.0",!8Gitlab-ci
Pipeline #106882 failed with stages
in 34 seconds
......@@ -5,8 +5,6 @@ WORKDIR /app
# If we want to use the alpine image, we need these packages for pytest
# RUN apk update && apk add python3-dev gcc libc-dev libffi-dev
ENV PYTHONDONTWRITEBYTECODE=1
COPY requirements.txt requirements.txt
COPY requirements-dev.txt requirements-dev.txt
......
......@@ -19,6 +19,7 @@ while [ -n "$1" ]; do
EXTRA_ARGS="--build"
;;
tests)
PYTHONDONTWRITEBYTECODE=1
docker-compose -f docker/docker-compose-test.yaml up --build
exit 0
;;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment