Skip to content

Commit 23cd228

Browse files
committed
fix: ignore lwreg test cases
1 parent b97feb8 commit 23cd228

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,4 @@ jobs:
6262
flake8 --per-file-ignores="__init__.py:F401" --ignore E402,E501,W503 $(git ls-files 'app/*.py') .
6363
- name: Run test
6464
run: |
65-
python3 -m pytest -p no:warnings --ignore=lwreg/lwreg/test-cli.py --ignore=lwreg/lwreg/test_lwreg.py
65+
python3 -m pytest -p no:warnings --ignore=lwreg/lwreg/test-cli.py --ignore=lwreg/lwreg/test_lwreg.py --ignore=lwreg/lwreg/test_dbutils.py

app/scripts/nmr-respredict/Dockerfile

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1-
FROM continuumio/miniconda3 AS nmr-respredict-ms
1+
FROM continuumio/miniconda3:24.1.2-0 AS nmr-respredict-ms
22

33
ENV PYTHON_VERSION=3.10
44

55
# Install runtime dependencies
66
RUN apt-get update && \
7-
apt-get install -y software-properties-common && \
8-
apt-get update -y && \
9-
apt-get install -y curl && \
7+
apt-get install -y --no-install-recommends \
8+
software-properties-common \
9+
curl && \
10+
apt-get clean && \
11+
rm -rf /var/lib/apt/lists/* && \
1012
conda update -n base -c defaults conda
1113

1214
RUN conda install -c conda-forge python>=PYTHON_VERSION

0 commit comments

Comments
 (0)