diff options
author | 2019-08-23 16:40:56 +0200 | |
---|---|---|
committer | 2019-08-23 16:40:56 +0200 | |
commit | a088893e6d68d58c00485a954d762d1d68ac1f03 (patch) | |
tree | 49ecbeb9931720a2aa80c93a74bd5ffea462f905 | |
parent | Fixing inconsistent indentation style in logs template and logs css (diff) |
Adding staff app to .coveragerc and .dockerignore + updating app locations in dockerignore
-rw-r--r-- | .coveragerc | 1 | ||||
-rw-r--r-- | .dockerignore | 10 |
2 files changed, 7 insertions, 4 deletions
diff --git a/.coveragerc b/.coveragerc index a2a51727..68f8305a 100644 --- a/.coveragerc +++ b/.coveragerc @@ -5,6 +5,7 @@ source = pydis_site/apps/admin pydis_site/apps/api pydis_site/apps/home + pydis_site/apps/staff pydis_site/apps/wiki omit = */admin.py diff --git a/.dockerignore b/.dockerignore index 18ea6955..f2475d80 100644 --- a/.dockerignore +++ b/.dockerignore @@ -10,10 +10,14 @@ .vagrant .venv __pycache__ -admin/tests -admin/tests.py +pydis_site/apps/admin/tests +pydis_site/apps/admin/tests.py pydis_site/apps/api/tests pydis_site/apps/api/tests.py +pydis_site/apps/home/tests +pydis_site/apps/home/tests.py +pydis_site/apps/staff/tests +pydis_site/apps/staff/tests.py CHANGELOG.md CONTRIBUTING.md docker @@ -24,8 +28,6 @@ docker-compose.yml Dockerfile Dockerfile.local docs -home/tests -home/tests.py htmlcov LICENSE pysite.egg-info |