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/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
- name: Print info about the current python installation
run: make ci-info
- name: Install requirements
run: make bootstrap-dev
run: make bootstrap-dev-plugins

##### Run tests, generate bundle
# - name: Run tests
Expand Down
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,11 @@ coverage-browse-report: coverage-html ## Open the HTML report in the browser
bundle: ## Bundle the tutor package in a single "dist/tutor" executable
pyinstaller tutor.spec

bootstrap-dev: ## Install dev requirements and all supported plugins
pip install .[full,dev]
bootstrap-dev: ## Install dev requirements
pip install .[dev]

bootstrap-dev-plugins: bootstrap-dev ## Install dev requirements and all plugins
pip install .[full]

pull-base-images: # Manually pull base images
docker image pull docker.io/ubuntu:22.04
Expand Down