diff options
author | 2021-12-28 14:30:45 -0800 | |
---|---|---|
committer | 2021-12-28 14:31:51 -0800 | |
commit | 4152f68e357b6aceabc88b252bcd5f83b81c3a12 (patch) | |
tree | dfda001930bc3110c2edea46edd1d49176728a7d /docker-compose.yml | |
parent | Do not run Kubernetes deployment on self-hosted runner (diff) |
Store relative paths in coverage data
Also remove the reliance on the container needing to mount the host's
files to the same directory during local testing.
Fix #135
Diffstat (limited to 'docker-compose.yml')
-rw-r--r-- | docker-compose.yml | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/docker-compose.yml b/docker-compose.yml index f546024..3854825 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -11,10 +11,8 @@ services: init: true ipc: none tty: true - working_dir: $PWD environment: DEBUG: 1 - PIPENV_PIPFILE: /snekbox/Pipfile PYTHONDONTWRITEBYTECODE: 1 build: context: . @@ -24,7 +22,7 @@ services: cache_from: - ghcr.io/python-discord/snekbox:latest volumes: - - $PWD:$PWD + - .:/snekbox - user-base:/snekbox/user_base volumes: |