Skip to content

Commit

Permalink
GitHub actions: use frozen list of Python packages
Browse files Browse the repository at this point in the history
  • Loading branch information
gusthoff committed Sep 27, 2024
1 parent b3407d4 commit 900df44
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/sphinx-books-tests.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements_frozen.txt
- name: Run Webpack production
run: make cleanall webpack-production
- name: Run SPHINX content tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sphinx-content-tests.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements_frozen.txt
- name: Run SPHINX engine tests
run: make SPHINXOPTS="-W" test_engine
- name: Build HTML content
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sphinx-plugin-tests.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,6 @@ jobs:
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements_frozen.txt
- name: Test Sphinx Widget Parser Plugin
run: make test_parser
2 changes: 1 addition & 1 deletion .github/workflows/typescript-tests.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements_frozen.txt
- name: Build HTML test pages
run: make site-testing
- name: Run Typescript tests
Expand Down

0 comments on commit 900df44

Please sign in to comment.