We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f16cb00 commit c24c299Copy full SHA for c24c299
.github/workflows/ci.yml
@@ -80,6 +80,9 @@ jobs:
80
python-version: ${{ matrix.python }}
81
- run: pip install poetry
82
- run: poetry install
83
+ - run: poetry build --format wheel
84
+ - run: rm -rf django_object_actions
85
+ - run: pip install --force-reinstall dist/*.whl
86
- run: poetry add "Django==${{ matrix.django }}"
87
- run: make test
88
Makefile
@@ -12,7 +12,7 @@ quickstart: resetdb
12
13
dev: ## Run the example project
14
@echo Browse at http://localhost:8000/admin/
15
- python $(MANAGE) runserver
+ PYTHONPATH=. python $(MANAGE) runserver
16
17
clean: ## Remove generated files
18
rm -rf .coverage
0 commit comments