Skip to content
Closed
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
3 changes: 2 additions & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@
python-version: "3.14"

- name: Install dependencies
run: pip install --only-binary :all: -r requirements.txt 'pytest==9.1.1'
run: |
pip install --only-binary :all: -r requirements.txt 'pytest==9.1.1'

Check warning on line 46 in .github/workflows/integration.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Using dependencies without locking resolved versions is security-sensitive.

See more on https://sonarcloud.io/project/issues?id=OpenRTMP_librtmp2-server-panel&issues=AZ_wvVkKm03ByZnX7Y0X&open=AZ_wvVkKm03ByZnX7Y0X&pullRequest=118

- name: Run integration tests against live server
env:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@
python-version: '3.14'

- name: Install dependencies
run: pip install --only-binary :all: -r requirements.txt 'pytest==9.1.1'
run: |
pip install --only-binary :all: -r requirements.txt 'pytest==9.1.1'

Check warning on line 45 in .github/workflows/release.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Using dependencies without locking resolved versions is security-sensitive.

See more on https://sonarcloud.io/project/issues?id=OpenRTMP_librtmp2-server-panel&issues=AZ_wvVkdm03ByZnX7Y0Y&open=AZ_wvVkdm03ByZnX7Y0Y&pullRequest=118

- name: Run tests
env:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
python-version: '3.14'

- name: Install dependencies
run: pip install --only-binary :all: -r requirements.txt 'pytest==9.1.1'
run: |
pip install --only-binary :all: -r requirements.txt 'pytest==9.1.1'

Check warning on line 26 in .github/workflows/tests.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Using dependencies without locking resolved versions is security-sensitive.

See more on https://sonarcloud.io/project/issues?id=OpenRTMP_librtmp2-server-panel&issues=AZ_wvVepm03ByZnX7Y0W&open=AZ_wvVepm03ByZnX7Y0W&pullRequest=118

- name: Validate config loading
env:
Expand Down
Loading