File tree 4 files changed +26
-42
lines changed
4 files changed +26
-42
lines changed Original file line number Diff line number Diff line change 1
1
-include .env
2
2
-include .set_env
3
3
4
- # Default tag is gnerated from the current timestamp
4
+ # Default tag is generated from the current timestamp
5
5
TAG ?= $(shell date +% s)
6
6
PIPELINE_IMAGE_REPO ?= quay.io/redhat-isv/operator-pipelines-test-image
7
7
PIPELINE_IMAGE ?= $(PIPELINE_IMAGE_REPO ) :$(TAG )
8
- # For local tests use a version-release based on the latest sucesfull
8
+ # For local tests use a version-release based on the latest successful
9
9
# pipeline run in Github action and bump up the release number
10
10
# https://github.com/redhat-openshift-ecosystem/operator-pipelines/actions/workflows/integration-tests.yml
11
11
OPERATOR_VERSION_RELEASE ?= 1-1
Original file line number Diff line number Diff line change @@ -70,8 +70,8 @@ COPY ./operator-pipeline-images ./operator-pipeline-images
70
70
RUN pip3 install --no-cache-dir pdm
71
71
# install dependencies in virtual environment
72
72
COPY ./pdm.lock ./pyproject.toml ./README.md ./
73
- RUN pdm venv create 3.12 && pdm install --frozen-lockfile --no-editable \
74
- --group operatorcert-dev
73
+ RUN pdm venv create 3.12 && \
74
+ pdm install --frozen-lockfile --no-editable --production
75
75
76
76
ENV VIRTUAL_ENV=/home/user/.venv
77
77
ENV PATH="$VIRTUAL_ENV/bin:$PATH"
Original file line number Diff line number Diff line change @@ -106,8 +106,3 @@ operatorcert-dev = [
106
106
" pip-audit>=2.7.3" ,
107
107
]
108
108
tox = [" tox>=4.16.0" , " tox-pdm>=0.7.2" ]
109
-
110
- # The following two lines are required to install ansible-lint under pdm
111
- # Ref: https://github.com/pdm-project/pdm/issues/1575
112
- [tool .pdm .resolution .overrides ]
113
- will-not-work-on-windows-try-from-wsl-instead = " 0.1.0"
You can’t perform that action at this time.
0 commit comments