Skip to content
Merged
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/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
4 changes: 2 additions & 2 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ $frontend = <<-SHELL
# Install learn deps
python3 -m venv /vagrant/venv
source /vagrant/venv/bin/activate
pip3 install -r /vagrant/frontend/requirements.txt
pip3 install -r /vagrant/frontend/requirements_frozen.txt

# File system: increase number of user watches
# Needed for npm
Expand Down Expand Up @@ -203,7 +203,7 @@ $epub = <<-SHELL
# Install learn deps
python3 -m venv /vagrant/venv
source /vagrant/venv/bin/activate
pip3 install -r /vagrant/frontend/requirements.txt
pip3 install -r /vagrant/frontend/requirements_frozen.txt

# File system: increase number of user watches
# Needed for npm
Expand Down
Loading