Skip to content

Commit

Permalink
Lower test frequency and pull in new perf-utils commit
Browse files Browse the repository at this point in the history
  • Loading branch information
adambollen committed Dec 16, 2024
1 parent 259b6f0 commit 842303a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion concourse/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ resources:
- name: dev-tests-trigger
type: time
source:
interval: 6h
interval: 24h

jobs:
- name: set-self
Expand Down
2 changes: 1 addition & 1 deletion concourse/scripts/perf.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export LOG_UNIQUE=$(date +%s%3N)
# Install fauna-shell
apt update -qq
apt install -y -qq npm
npm install --silent -g fauna-shell@^2.0.0
npm install --silent -g fauna-shell@^3.0.0

cd repo.git

Expand Down
2 changes: 1 addition & 1 deletion perf-test-setup
Submodule perf-test-setup updated 2 files
+23 −2 README.md
+1 −1 init.sh
3 changes: 2 additions & 1 deletion src/test/java/com/fauna/perf/PerformanceTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,9 @@ private static Stream<Arguments> getTestData() throws IOException {
}

@BeforeAll
public static void setup() {
public static void setup() throws IllegalArgumentException, InterruptedException, ExecutionException {
client = Fauna.client();
client.asyncQuery(fql("null")).get();
}

@AfterAll
Expand Down

0 comments on commit 842303a

Please sign in to comment.