WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
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
1 change: 0 additions & 1 deletion tests/integration/microservices/back/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,3 @@
# pip-compile --output-file=tests/integration/microservices/back/requirements.txt tests/integration/microservices/back/requirements.in
#

opengeodeweb-back==5.*,>=5.14.1
1 change: 0 additions & 1 deletion tests/integration/microservices/viewer/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,3 @@
# pip-compile --output-file=tests/integration/microservices/viewer/requirements.txt tests/integration/microservices/viewer/requirements.in
#

opengeodeweb-viewer==1.*,>=1.13.2
4 changes: 4 additions & 0 deletions tests/vitest.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import { defineConfig } from "vitest/config"
import { defineVitestProject } from "@nuxt/test-utils/config"

const globalRetry = process.env.CI ? 3 : 0

Check failure on line 4 in tests/vitest.config.js

View workflow job for this annotation

GitHub Actions / test / oxlint

eslint-plugin-node(no-process-env)

Disallowed usage of `process.env`.

Check failure on line 4 in tests/vitest.config.js

View workflow job for this annotation

GitHub Actions / test / oxlint

eslint(no-magic-numbers)

0

Check failure on line 4 in tests/vitest.config.js

View workflow job for this annotation

GitHub Actions / test / oxlint

eslint(no-magic-numbers)

3

export default defineConfig({

Check failure on line 6 in tests/vitest.config.js

View workflow job for this annotation

GitHub Actions / test / oxlint

eslint-plugin-import(no-default-export)

Prefer named exports
test: {
projects: [
await defineVitestProject({
Expand All @@ -14,6 +16,7 @@
inline: ["vuetify"],
},
},
retry: globalRetry,
},
}),
await defineVitestProject({
Expand All @@ -27,6 +30,7 @@
inline: ["vuetify"],
},
},
retry: globalRetry,
},
}),
],
Expand Down
Loading