Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ on:
# On pull request
pull_request:

# Runs daily at UTC midnight.
schedule:
- cron: "0 0 * * *"

# Allow manual activations.
workflow_dispatch:

Expand Down
4 changes: 2 additions & 2 deletions test/extension.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ suite("Integration tests", () => {
suiteSetup(async function () {
// Prolog
console.log("suiteSetup(): called");
this.timeout(120 * 1000); // 120 secs timeout, for windows,
this.timeout(10 * 60 * 1000); // 10 min timeout, for windows,

// Activate the extension. This registers the commands.
await vscode.extensions.getExtension("fpgawars.apio").activate();
Expand Down Expand Up @@ -145,7 +145,7 @@ suite("Integration tests", () => {
test("test-build", async function () {
// Epilog
console.log("test-build test started");
this.timeout(120 * 1000); // 120 secs timeout, for windows.
this.timeout(10 * 60 * 1000); // 10 min timeout, for windows,

// The suite setup leave the workspace empty.
assert(!(await fileExistsInWorkspace("apio.ini")));
Expand Down
Loading