We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 442fcf6 commit 3e76f17Copy full SHA for 3e76f17
1 file changed
.github/workflows/photon-os-installer.yml
@@ -16,7 +16,7 @@ jobs:
16
run: |
17
POI_IMAGE_NAME=photon/installer:${{ github.sha }}
18
cd docker
19
- docker build -t $POI_IMAGE_NAME --build-arg DOCKER_PROXY=dockerhub.artifactory.eng.vmware.com/ --build-context poi-helper=$(realpath $(pwd)/..) .
+ docker build -t $POI_IMAGE_NAME --build-context poi-helper=$(realpath $(pwd)/..) .
20
docker system prune -f
21
22
test:
@@ -37,6 +37,9 @@ jobs:
37
python -m pip install --upgrade pip
38
pip install -r requirements.txt # Ensure this file lists the necessary dependencies
39
40
+ - name: install pytest
41
+ run: pip install pytest
42
+
43
- name: Run Pytest
44
45
pytest -x tests/poi-container-test.py
0 commit comments