Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
AleksiAhtiainen committed Oct 21, 2024
1 parent a967eaf commit 24143ed
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/actions/omadataoauth2_e2e_test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@ runs:
PLAYWRIGHT_HTML_REPORT: omadataoauth2-e2e-report-${{inputs.shardIndex}}-of-${{inputs.shardTotal}}
uses: nick-fields/retry@v3
with:
max_attempts: 2
max_attempts: 1
timeout_minutes: 45
command: mvn scalatest:test -Pomadataoauth2e2e -Dsuites="fi.oph.koski.omadataoauth2.e2e.OmaDataOAuth2E2ESpec" --batch-mode
on_retry_command: npm run --prefix ./omadata-oauth2-sample/client clean-luovutuspalvelu-container
- uses: actions/upload-artifact@v3
if: always()
with:
Expand Down
4 changes: 2 additions & 2 deletions omadata-oauth2-sample/client/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,15 +96,15 @@ export default defineConfig({
reuseExistingServer: !process.env.CI,
stdout: "pipe",
stderr: "pipe",
timeout: 10 * 60 * 1000,
timeout: 2 * 60 * 1000,
},
{
command: `npm run start`,
url: "http://localhost:7050",
reuseExistingServer: !process.env.CI,
stdout: "pipe",
stderr: "pipe",
timeout: 10 * 60 * 1000,
timeout: 2 * 60 * 1000,
},
],
})

0 comments on commit 24143ed

Please sign in to comment.