forked from Stanford-Online/xblock-sql-grader
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
43b093a
commit 7dcc0d7
Showing
1 changed file
with
13 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ envlist = | |
[testenv] | ||
deps = | ||
-rrequirements/test.txt | ||
-e git+https://github.com/openedx/[email protected]#egg=codejail | ||
-e git+https://github.com/openedx/[email protected]\#egg=codejail | ||
django32: Django>=3.2,<4.0 | ||
django42: Django>=4.2,<4.3 | ||
commands = | ||
|
@@ -22,22 +22,31 @@ skip_install = True | |
|
||
[testenv:csslint] | ||
allowlist_externals = {toxinidir}/node_modules/csslint/dist/cli.js | ||
passenv = TRAVIS TRAVIS_JOB_ID TRAVIS_BRANCH | ||
passenv = | ||
TRAVIS | ||
TRAVIS_JOB_ID | ||
TRAVIS_BRANCH | ||
commands = | ||
{toxinidir}/node_modules/csslint/dist/cli.js sql_grader/static/ | ||
deps = | ||
skip_install = True | ||
|
||
[testenv:eslint] | ||
allowlist_externals = {toxinidir}/node_modules/eslint/bin/eslint.js | ||
passenv = TRAVIS TRAVIS_JOB_ID TRAVIS_BRANCH | ||
passenv = | ||
TRAVIS | ||
TRAVIS_JOB_ID | ||
TRAVIS_BRANCH | ||
commands = | ||
{toxinidir}/node_modules/eslint/bin/eslint.js sql_grader/static/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 = | ||
|