diff --git a/.travis.yml b/.travis.yml index 61f67cd529..26d8c5086c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,7 +17,7 @@ go_import_path: github.com/nats-io/nats-server jobs: include: - - name: "Compile and various checks" + - name: "Compile and various other checks" env: TEST_SUITE=compile - name: "Run TestNoRace tests" env: TEST_SUITE=no_race_tests @@ -27,11 +27,11 @@ jobs: env: TEST_SUITE=js_cluster_tests - name: "Run JetStream super cluster tests" env: TEST_SUITE=js_super_cluster_tests - - name: "Run non JetStreams tests form the server package" + - name: "Run non JetStream tests from the server package" env: TEST_SUITE=srv_pkg_non_js_tests - name: "Run all tests from all other packages" env: TEST_SUITE=non_srv_pkg_tests - - name: "Compile and various checks with older Go release" + - name: "Compile with older Go release" go: 1.17.x env: TEST_SUITE=build_only diff --git a/scripts/runTestsOnTravis.sh b/scripts/runTestsOnTravis.sh index 8f42cc62af..e1af4df4a2 100755 --- a/scripts/runTestsOnTravis.sh +++ b/scripts/runTestsOnTravis.sh @@ -32,7 +32,7 @@ elif [ "$1" = "no_race_tests" ]; then elif [ "$1" = "js_tests" ]; then - # Run JetStream non-clustere tests. By convention, all JS tests start + # Run JetStream non-clustered tests. By convention, all JS tests start # with `TestJetStream`. We exclude the clustered and super-clustered # tests by using the `skip_js_cluster_tests` and `skip_js_super_cluster_tests` # build tags.