Skip to content

Commit be8515f

Browse files
committed
dondition
1 parent 8404082 commit be8515f

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/scripts/run_test.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,8 @@ COVERAGE_XML="sonarcloud-coverage-$3.xml"
99
echo "Current working directory: $(pwd)"
1010
# list contents of venv
1111

12-
ls -la .venv
13-
# list contents of poetry.lock
14-
ls -la poetry.lock
12+
ls -la .
13+
1514

1615
echo "Using Python Version $PYTHON_VERSION"
1716
poetry config virtualenvs.in-project true

.github/workflows/sonarcloud.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ jobs:
4848
run: poetry config virtualenvs.in-project true
4949

5050
- name: Cache Poetry virtualenv (filenameprocessor)
51+
if: matrix.python-version == '3.10'
5152
uses: actions/cache@v4
5253
with:
5354
path: ./filenameprocessor/.venv
@@ -56,6 +57,7 @@ jobs:
5657
${{ runner.os }}-venv-fp-py3.10-
5758
5859
- name: Cache Poetry virtualenv (recordprocessor)
60+
if: matrix.python-version == '3.10'
5961
uses: actions/cache@v4
6062
with:
6163
path: ./recordprocessor/.venv
@@ -64,6 +66,7 @@ jobs:
6466
${{ runner.os }}-venv-rp-py3.10-
6567
6668
- name: Cache Poetry virtualenv (recordforwarder)
69+
if: matrix.python-version == '3.11'
6770
uses: actions/cache@v4
6871
with:
6972
path: ./backend/.venv
@@ -72,6 +75,7 @@ jobs:
7275
${{ runner.os }}-venv-be-py3.11-
7376
7477
- name: Cache Poetry virtualenv (ack_backend)
78+
if: matrix.python-version == '3.10'
7579
uses: actions/cache@v4
7680
with:
7781
path: ./ack_backend/.venv
@@ -80,6 +84,7 @@ jobs:
8084
${{ runner.os }}-venv-ack-py3.10-
8185
8286
- name: Cache Poetry virtualenv (delta_backend)
87+
if: matrix.python-version == '3.11'
8388
uses: actions/cache@v4
8489
with:
8590
path: ./delta_backend/.venv

0 commit comments

Comments
 (0)