Skip to content

Commit

Permalink
Add check-older target
Browse files Browse the repository at this point in the history
  • Loading branch information
rocky committed Aug 22, 2021
1 parent 988b3ce commit 9b4669e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ check-full: check
$(MAKE) -C test check-pyenv

#: Run all quick tests
check-short: unittest pytest
check-short: unittest
$(MAKE) -C test check-short

#: Run unittests tests
unittest:
py.test pytest
cd test_unit && for file in test_*.py; do echo testing $$file ...; nosetests -v $$file; done

#: Clean up temporary files and .pyc files
clean: clean_pyc
Expand Down Expand Up @@ -77,6 +77,10 @@ check-rst:
check-newer:
$(BASH) admin-tools/check-newer-versions.sh

#: Run tests across the older Python versions supported
check-older:
$(BASH) admin-tools/check-older-versions.sh

#: Lint program
flake8:
$(LINT) xdis
Expand Down

0 comments on commit 9b4669e

Please sign in to comment.