Skip to content

Commit 47c6819

Browse files
committed
more
1 parent d332872 commit 47c6819

File tree

2 files changed

+20
-7
lines changed

2 files changed

+20
-7
lines changed

analyses-snapshot-testing/Makefile

+15-6
Original file line numberDiff line numberDiff line change
@@ -103,18 +103,27 @@ LOCAL_IMAGE_NAME ?= opentrons-analysis:local
103103
.PHONY: build-local
104104
build-local:
105105
@echo "Building docker image for your local opentrons code"
106-
@echo "The image will be named opentrons-analysis:local"
107-
@echo "For a fresh build, run 'make local-build NO_CACHE=1'"
108-
docker build --build-arg BASE_IMAGE_NAME=$(BASE_IMAGE_NAME) $(BUILD_FLAGS) -t $(LOCAL_IMAGE_NAME) -f citools/Dockerfile.local .. || true
106+
@echo "The image name is set with variable LOCAL_IMAGE_NAME and is $(LOCAL_IMAGE_NAME)"
107+
docker build --build-arg BASE_IMAGE_NAME=$(BASE_IMAGE_NAME) -t $(LOCAL_IMAGE_NAME) -f citools/Dockerfile.local .. || true
109108
@echo "Build complete"
110109

111110
.PHONY: snapshot-test-local
111+
snapshot-test-local: ANALYSIS_REF=$(LOCAL_IMAGE_NAME)
112112
snapshot-test-local:
113-
export ANALYSIS_REF=$(LOCAL_IMAGE_NAME)
114-
@echo "ANALYSIS_REF is $(ANALYSIS_REF)"
113+
@echo "This target is overriding the ANALYSIS_REF to the local image name: $(LOCAL_IMAGE_NAME)"
114+
@echo "ANALYSIS_REF is $(ANALYSIS_REF). This is the image used in the test."
115+
@echo "PROTOCOL_NAMES is $(PROTOCOL_NAMES)"
116+
@echo "OVERRIDE_PROTOCOL_NAMES is $(OVERRIDE_PROTOCOL_NAMES)"
117+
$(PYTHON) -m pipenv run pytest -k analyses_snapshot_test -vv
118+
119+
.PHONY: snapshot-test-update-local
120+
snapshot-test-update-local: ANALYSIS_REF=$(LOCAL_IMAGE_NAME)
121+
snapshot-test-update-local:
122+
@echo "This target is overriding the ANALYSIS_REF to the local image name: $(LOCAL_IMAGE_NAME)"
123+
@echo "ANALYSIS_REF is $(ANALYSIS_REF). This is the image used in the test."
115124
@echo "PROTOCOL_NAMES is $(PROTOCOL_NAMES)"
116125
@echo "OVERRIDE_PROTOCOL_NAMES is $(OVERRIDE_PROTOCOL_NAMES)"
117-
$(PYTHON) -m pipenv run pytest -k analyses_snapshot_test -vv
126+
$(PYTHON) -m pipenv run pytest -k analyses_snapshot_test --snapshot-update
118127

119128
.PHONY: generate-protocols
120129
generate-protocols:

analyses-snapshot-testing/README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,12 @@ cd analyses-snapshot-testing \
8181
`make build-local` - on top of the base, copy in the local code and build
8282
`make snapshot-test-local` - run the analyses battery against the image you just created
8383

84-
> make sure to run `make build-local` after you make changes to the code to update the image
84+
> make sure to run `make build-local` after you make changes to the code to update the image!!!
8585

8686
You have the option to specify one or many protocols to run the analyses on. This is also described above [Running the tests against specific protocols](#running-the-tests-against-specific-protocols)
8787

8888
- `make snapshot-test-local PROTOCOL_NAMES=Flex_S_v2_19_Illumina_DNA_PCR_Free OVERRIDE_PROTOCOL_NAMES=none`
89+
90+
### Updating the snapshots locally
91+
92+
- `make snapshot-test-update-local`

0 commit comments

Comments
 (0)