Skip to content
Snippets Groups Projects

Added convenience method to create test data

Merged robinwilliam.hundt requested to merge convenience_test_data_method into master
+ 4
6
@@ -8,6 +8,10 @@ stages:
variables:
IMAGE_TAG: $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_NAME
cache:
paths:
- .venv/
# ========================== Build Testing section =========================== #
build_test_env:
image: python:3.6
@@ -16,9 +20,6 @@ build_test_env:
- python -m venv .venv
- source .venv/bin/activate
- make install
cache:
paths:
- .venv
# ============================== Testing section ============================= #
# ----------------------------- Backend subsection --------------------------- #
@@ -26,9 +27,6 @@ build_test_env:
image: python:3.6
before_script:
- source .venv/bin/activate
cache:
paths:
- .venv
test_pytest:
<<: *test_definition_virtualenv
Loading