Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/CDA-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
docker compose up -d

- name: Set Up Python
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -56,7 +56,7 @@
# Install dependencies only if cache is missed
- name: Install dependencies
if: steps.cache-poetry-venv.outputs.cache-hit != 'true'
run: poetry install --no-root

Check warning on line 59 in .github/workflows/CDA-testing.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Poetry allows execution of setup scripts on source builds by default. Make sure it is safe here.

See more on https://sonarcloud.io/project/issues?id=HydrologicEngineeringCenter_cwms-python&issues=AZ-g_bD2Kem7UxiIC91M&open=AZ-g_bD2Kem7UxiIC91M&pullRequest=302

# Run pytest and generate coverage report data.
- name: Run Tests and Check Types
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pypi-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
- uses: actions/checkout@v7

- name: Set Up Python
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: '3.x'

Expand All @@ -29,7 +29,7 @@
key: venv-${{ hashFiles('poetry.lock') }}

- name: Install Dependencies
run: poetry install

Check warning on line 32 in .github/workflows/pypi-deploy.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Poetry allows execution of setup scripts on source builds by default. Make sure it is safe here.

See more on https://sonarcloud.io/project/issues?id=HydrologicEngineeringCenter_cwms-python&issues=AZ-g_bGSKem7UxiIC91O&open=AZ-g_bGSKem7UxiIC91O&pullRequest=302

# The tests should have already been run in the testing workflow, but we run them
# again here to make sure that we do not deploy a broken distribution.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
- uses: actions/checkout@v7

- name: Set Up Python
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: '3.x'

Expand All @@ -36,7 +36,7 @@
key: venv-${{ hashFiles('poetry.lock') }}

- name: Install Dependencies
run: poetry install

Check warning on line 39 in .github/workflows/test-deploy.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Poetry allows execution of setup scripts on source builds by default. Make sure it is safe here.

See more on https://sonarcloud.io/project/issues?id=HydrologicEngineeringCenter_cwms-python&issues=AZ-g_bBJKem7UxiIC91L&open=AZ-g_bBJKem7UxiIC91L&pullRequest=302

# The tests should have already been run in the testing workflow, but we run them
# again here to make sure that we do not deploy a broken distribution.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
- uses: actions/checkout@v7

- name: Set Up Python
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: '3.13'

Expand All @@ -28,7 +28,7 @@
key: venv-${{ hashFiles('poetry.lock') }}

- name: Install Dependencies
run: poetry install

Check warning on line 31 in .github/workflows/testing.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Poetry allows execution of setup scripts on source builds by default. Make sure it is safe here.

See more on https://sonarcloud.io/project/issues?id=HydrologicEngineeringCenter_cwms-python&issues=AZ-g_bGHKem7UxiIC91N&open=AZ-g_bGHKem7UxiIC91N&pullRequest=302

# Run pytest and generate coverage report data.
- name: Run Tests
Expand Down
Loading