Skip to content

Commit

Permalink
Trim the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rsandell committed May 18, 2017
1 parent 75b686e commit c04b803
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
8 changes: 1 addition & 7 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,7 @@ pipeline {
docker.build('latest', 'docker/gulp/').inside {
unstash 'ws'
//sh 'gulp test'
sh '''#!/bin/bash
for i in {0..15}
do
echo "$i"
sleep 1
done
'''
sh './frontEndTests.sh'
}
}
}
Expand Down
6 changes: 6 additions & 0 deletions frontEndTests.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/bash
for i in {0..15}
do
echo "$i"
sleep 1
done
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@
<artifactId>metrics-json</artifactId>
<version>${dropwizard-metrics.version}</version>
</dependency>

<dependency>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-jcache</artifactId>
Expand Down Expand Up @@ -399,12 +399,12 @@
This will run multiple simulations one by one. Useful when doing Gatling
tests in CI.
-->
<runMultipleSimulations>true</runMultipleSimulations>
<runMultipleSimulations>false</runMultipleSimulations>
<!--
To run only one simulation, you need to disable the "runMultipleSimulations"
above, and write the name of your simulation below.
-->
<!--<simulationClass>WriteTheNameOfYourGatlingSimulation</simulationClass>-->
<simulationClass>OperationGatlingTest</simulationClass>
</configuration>
</plugin>
<plugin>
Expand Down

0 comments on commit c04b803

Please sign in to comment.