Skip to content

Commit

Permalink
Use current venv version for nox fast jobs via makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
insspb committed Jun 10, 2022
1 parent 5909656 commit dbe975d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Expand Up @@ -61,12 +61,12 @@ clean: clean-tox clean-build clean-pyc clean-nox clean-coverage clean-pytest cle
.PHONY: lint
lint: ## Check code style
@echo "+ $@"
@nox -s lint
@nox --force-python python -s lint

.PHONY: test
test: ## Run tests quickly with the default Python
@echo "+ $@"
@nox -p 3.10
@nox --force-python python

.PHONY: test-all
test-all: ## Run tests on every Python version with tox
Expand All @@ -76,7 +76,7 @@ test-all: ## Run tests on every Python version with tox
.PHONY: coverage
coverage: ## Check code coverage quickly with the default Python
@echo "+ $@"
@nox -s tests -p 3.10
@nox --force-python python -s tests
@$(BROWSER) htmlcov/index.html

.PHONY: docs
Expand Down

0 comments on commit dbe975d

Please sign in to comment.