Skip to content
Snippets Groups Projects
tox.ini 292 B
Newer Older
  • Learn to ignore specific revisions
  • [tox]
    envlist =  py38-django{22}, quality
    
    [testenv]
    whitelist_externals =
    	make
    deps =
    	django22: Django>=2.2,<2.3
    	-r{toxinidir}/requirements/test.txt
    commands =
    	make test
    
    [testenv:quality]
    whitelist_externals =
    	make
    deps =
    	-r{toxinidir}/requirements/test.txt
    commands =
    	make quality