File tree Expand file tree Collapse file tree 4 files changed +42
-0
lines changed Expand file tree Collapse file tree 4 files changed +42
-0
lines changed Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
3
+ SAUCELABS_USER=" "
4
+ SAUCELABS_KEY=" "
5
+ export CODEBENDER_SELENIUM_HUB_URL=http://${SAUCELABS_USER} :${SAUCELABS_KEY} @ondemand.saucelabs.com:80/wd/hub
6
+ export CODEBENDER_TEST_USER=" "
7
+ export CODEBENDER_TEST_PASS=" "
8
+ export DISQUS_ACCESS_TOKEN=" "
9
+ export DISQUS_API_SECRET=" "
10
+ export DISQUS_API_PUBLIC=" "
11
+ export DISQUS_SSO_ID=" "
12
+ export DISQUS_SSO_USERNAME=" "
13
+ export DISQUS_SSO_EMAIL=" "
14
+ export EMAIL=" "
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
3
+ source ./env_vars.sh
4
+ cd ..
5
+ time tox tests/common -- --url=https://codebender.cc --source=codebender_cc
6
+ RETVAL=$?
7
+ cd -
8
+ echo " tests return value: ${RETVAL} "
9
+ exit ${RETVAL}
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
3
+ source ./env_vars.sh
4
+ cd ..
5
+ time tox tests/libraries -- --url=https://codebender.cc --source=codebender_cc -F
6
+ RETVAL=$?
7
+ cd -
8
+ echo " tests return value: ${RETVAL} "
9
+ exit ${RETVAL}
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
3
+
4
+ source ./env_vars.sh
5
+ cd ..
6
+ time tox tests/compile_tester -- --url=https://codebender.cc --source=codebender_cc -F
7
+ RETVAL=$?
8
+ cd -
9
+ echo " tests return value: ${RETVAL} "
10
+ exit ${RETVAL}
You can’t perform that action at this time.
0 commit comments