Skip to content

Commit 5359edf

Browse files
committed
Fix tests in deployed docker image
1 parent 8129c9c commit 5359edf

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/cicd_deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
docker run
3333
--ipc=host
3434
${{ env.TEST_TAG }}
35-
python -m pytest -m docker -s --log-cli-level DEBUG
35+
python -m pytest -m "not gpao" -s --log-cli-level DEBUG
3636
3737
- name: Set version number
3838
run: |

Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mambaorg/micromamba:latest as mamba_pdal
1+
FROM mambaorg/micromamba:latest AS mamba_pdal
22
COPY environment.yml /environment.yml
33
USER root
44
RUN micromamba env create -n altianalysis -f /environment.yml
@@ -19,6 +19,8 @@ WORKDIR /altianalysis
1919
RUN mkdir tmp
2020
COPY altianalysis altianalysis
2121
COPY test test
22+
# Copy pyproject to register pytest markers
23+
COPY pyproject.toml pyproject.toml
2224

2325
# Copy test data that are stored directly in the altianalysis repository
2426
COPY data/lhd data/lhd

0 commit comments

Comments
 (0)