File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ---
12name : CI
23
34on :
1011
1112defaults :
1213 run :
13- # see: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#using-a-specific-shell
1414 shell : bash --noprofile --norc -eo pipefail {0}
1515
1616env :
3333 make docker-image
3434 - name : " Unit Tests"
3535 run : |
36- make docker-unit-tests
36+ make docker-unit-test
3737 mkdir -p out/coverage
3838 mv unit.out out/coverage/
3939 - uses : actions/upload-artifact@v4
Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ aptly version: 1.5.0+189+g0fc90dff
130130
131131In order to run aptly unit tests, enter the following:
132132```
133- make docker-unit-tests
133+ make docker-unit-test
134134```
135135
136136#### Running system tests
Original file line number Diff line number Diff line change @@ -194,7 +194,7 @@ docker-shell: ## Run aptly and other commands in docker container
194194docker-deb : # # Build debian packages in docker container
195195 @$(DOCKER_RUN ) -t aptly-dev /work/src/system/docker-wrapper dpkg DEBARCH=amd64
196196
197- docker-unit-tests : # # Run unit tests in docker container (add TEST=regex to specify which tests to run)
197+ docker-unit-test : # # Run unit tests in docker container (add TEST=regex to specify which tests to run)
198198 $(DOCKER_RUN ) -t --tmpfs /smallfs:rw,size=1m aptly-dev /work/src/system/docker-wrapper \
199199 azurite-start \
200200 AZURE_STORAGE_ENDPOINT=http://127.0.0.1:10000/devstoreaccount1 \
You can’t perform that action at this time.
0 commit comments