syncing master

This commit is contained in:
Senad Uka
2017-11-21 17:11:29 +01:00
parent 0eee92660a
commit b4e45199b7
47 changed files with 5666 additions and 263 deletions

View File

@@ -17,12 +17,12 @@ def test(ctx):
@task
def test_ci(ctx):
run('nosetests --with-xunit --xunit-file $CIRCLE_TEST_REPORTS/nosetests.xml')
test_js_ci(None)
run('nosetests --nologcapture --with-xunit --xunit-file $CIRCLE_TEST_REPORTS/nosetests.xml')
test_js_ci(ctx)
def test_js_ci(ctx):
run('karma start spec/javascripts/karma.config.js --single-run --browsers Chrome')
run('./node_modules/.bin/karma start spec/javascripts/karma.config.js')
@task