Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TOX 40 Updates. #138

Merged
merged 2 commits into from
Nov 10, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 18 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -19,25 +19,38 @@ deps =
skip_install = True

[testenv:csslint]
allowlist_externals = {toxinidir}/node_modules/csslint/dist/cli.js
passenv = TRAVIS TRAVIS_JOB_ID TRAVIS_BRANCH
allowlist_externals =
make
{toxinidir}/node_modules/csslint/dist/cli.js
passenv =
TRAVIS
TRAVIS_JOB_ID
TRAVIS_BRANCH
commands =
make requirements_js
{toxinidir}/node_modules/csslint/dist/cli.js imagemodal/public/
deps =
skip_install = True

[testenv:eslint]
allowlist_externals = {toxinidir}/node_modules/eslint/bin/eslint.js
passenv = TRAVIS TRAVIS_JOB_ID TRAVIS_BRANCH
allowlist_externals =
make
{toxinidir}/node_modules/eslint/bin/eslint.js
passenv =
TRAVIS
TRAVIS_JOB_ID
TRAVIS_BRANCH
commands =
make requirements_js
{toxinidir}/node_modules/eslint/bin/eslint.js --fix imagemodal/public/view.js
deps =
skip_install = True

[testenv:quality]
passenv = TRAVIS TRAVIS_JOB_ID TRAVIS_BRANCH
passenv =
TRAVIS
TRAVIS_JOB_ID
TRAVIS_BRANCH
deps =
-rrequirements/quality.txt
commands =
Expand Down
Loading