Skip to content

Commit deff3df

Browse files
committed
modify to run tests w/o failure due to dependency
1 parent e8f8d67 commit deff3df

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Dockerfile.ci

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ RUN apt-get update && apt-get install -y \
1919
python3 \
2020
python3-pip \
2121
iverilog \
22+
yosys \
2223
&& apt-get clean
2324

2425
# Install uv
@@ -40,8 +41,8 @@ RUN echo "=== Running Code Linting ===" && \
4041

4142
# Step 2: Run tests
4243
RUN echo "=== Running Python Script(s) Tests ===" && \
43-
uv run pytest -v tests/test_evals.py && \
44-
uv run pytest -v tests/test_models.py::test_api_connection_with_no_env_load
44+
uv run pytest -v tests/test_evals.py \
45+
tests/test_models.py::test_api_connection_with_no_env_load
4546

4647
# Step 3: Run tests for ground truth with corrresponding testbench
4748
RUN echo "=== Running Verilog Tests ===" && \

0 commit comments

Comments
 (0)