Skip to content
Snippets Groups Projects
Commit 7222329b authored by Adriaan de Beer's avatar Adriaan de Beer
Browse files

ST-456 echo status inside post-deployment/Makefile

parent dd2693b9
Branches
Tags
No related merge requests found
...@@ -406,9 +406,9 @@ test-chart: ...@@ -406,9 +406,9 @@ test-chart:
artifacts: artifacts:
name: "$CI_PROJECT_NAME-$CI_JOB_ID" name: "$CI_PROJECT_NAME-$CI_JOB_ID"
paths: paths:
- "build/" - "charts/build/"
reports: reports:
junit: build/report.xml junit: charts/build/report.xml
# push: # push:
# stage: push # stage: push
......
...@@ -18,6 +18,7 @@ test: install ...@@ -18,6 +18,7 @@ test: install
find . -name "*.pyc" -type f -delete && \ find . -name "*.pyc" -type f -delete && \
PYTHONPATH=/app:/app/testing:/app/testing/post-deployment pytest $(if $(findstring all,$(MARK)),, -m $(MARK)) --disable-pytest-warnings | tee pytest.stdout && \ PYTHONPATH=/app:/app/testing:/app/testing/post-deployment pytest $(if $(findstring all,$(MARK)),, -m $(MARK)) --disable-pytest-warnings | tee pytest.stdout && \
status=$$?; \ status=$$?; \
echo "Status set at $$status"; \
$(foreach artfct,$(TEST_ARTIFACTS),mv -f $(artfct) build/;) \ $(foreach artfct,$(TEST_ARTIFACTS),mv -f $(artfct) build/;) \
exit $$status exit $$status
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment