Skip to content

Commit

Permalink
fix(ci): disallow parallel run for all Fabric AIO int. tests #656
Browse files Browse the repository at this point in the history
This is yet another attempt at potentially fixing all the remaining CI
flakes that only happen on the GitHub Action runners but never on
developer machines.

Signed-off-by: Peter Somogyvari <peter.somogyvari@accenture.com>
  • Loading branch information
petermetz committed Mar 24, 2021
1 parent 83a57c9 commit 93c017c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ test(testCase, async (t: Test) => {
imageVersion: "2021-03-02-ssh-hotfix",
});
await ledger.start();
t.doesNotThrow(() => ledger.getContainer(), "Container is set OK");
const ledgerContainer = ledger.getContainer();
t.ok(ledgerContainer, "ledgerContainer truthy OK");
t.ok(ledgerContainer.id, "ledgerContainer.id truthy OK");

const tearDown = async () => {
await ledger.stop();
Expand Down
Empty file.

0 comments on commit 93c017c

Please sign in to comment.