From 6074f34967f0f53687ef83029dd79116a05774c0 Mon Sep 17 00:00:00 2001 From: Moritz Mahringer Date: Thu, 25 Feb 2021 06:14:35 +0100 Subject: [PATCH] Fix src location --- docker-compose.yml | 2 +- pytest.ini | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index ff62814d..96148ff3 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -5,7 +5,7 @@ services: volumes: - "./tests:/usr/src/app/tests" - "./test-data:/usr/src/app/test-data" - - "./src:/usr/src/app/src" + - "./pdf_service:/usr/src/app/pdf_service" - "./coverage:/usr/src/app/coverage" - "./.pytest_cache:/usr/src/app/.pytest_cache" command: | diff --git a/pytest.ini b/pytest.ini index 09a729e2..5f5585eb 100644 --- a/pytest.ini +++ b/pytest.ini @@ -1,3 +1,3 @@ [pytest] python_files = tests.py test_*.py *_tests.py -norecursedirs = src +norecursedirs = pdf_service