Skip to content
This repository has been archived by the owner on Dec 16, 2023. It is now read-only.

Commit

Permalink
Fix tox config
Browse files Browse the repository at this point in the history
  • Loading branch information
moggers87 committed Jul 17, 2018
1 parent 09471f3 commit 6107a44
Showing 1 changed file with 11 additions and 12 deletions.
23 changes: 11 additions & 12 deletions tox.ini
Expand Up @@ -3,7 +3,6 @@ envlist =
docs
js-firefox
{py,js}-lint
skipsdist = true

[flake8]
max-line-length = 120
Expand All @@ -16,25 +15,25 @@ exclude =
docs

[testenv:docs]
basepython=python3
changedir=docs
commands=sphinx-build -W -b html -d _build/doctrees . _build/html
deps=.[docs]
basepython = python3
changedir = docs
commands = sphinx-build -W -b html -d _build/doctrees . _build/html
extras = docs

[testenv:js-firefox]
setenv = MOZ_HEADLESS = 1
basepython=python3
commands=jasmine ci -b firefox
basepython = python3
commands = jasmine ci -b firefox
deps=
jasmine
typing

[testenv:py-lint]
basepython=python
commands=flake8
deps=flake8
basepython = python
commands = flake8
deps = flake8

[testenv:js-lint]
whitelist_externals = jshint
basepython=python
commands=jshint .
basepython = python
commands = jshint .

0 comments on commit 6107a44

Please sign in to comment.