Last active
November 15, 2019 13:03
-
-
Save davidmukiibi/2111e1782c147c26066fcd599a7a9983 to your computer and use it in GitHub Desktop.
These are the changes between running k6 tests from local vs cloud
This file contains hidden or 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
# change 1 | |
login_loadimpact: &login_loadimpact | |
run: | |
name: Logging into loadimpact | |
command: | | |
k6 login cloud --token $K6_CLOUD_TOKEN | |
# change 2 | |
k6_performance_tests: &k6_performance_tests | |
run: | |
name: Running Load Tests Using K6 | |
command: | | |
k6 cloud tests/cloud-test.js | |
# change 3 | |
run_perfomance_tests: | |
<<: *defaults | |
steps: | |
- checkout | |
- *login_loadimpact | |
- *k6_performance_tests | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment