Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
2d770d4
Attempt to fix UI coverage
SchrodingersGat Jun 2, 2026
9fc4036
Update CI workflows:
SchrodingersGat Jun 2, 2026
30ee59e
Restore line
SchrodingersGat Jun 2, 2026
a430c95
Simplify test
SchrodingersGat Jun 2, 2026
b839c71
Merge branch 'master' into ui-coverage
SchrodingersGat Jun 2, 2026
93e35fe
Simplify test matrix
SchrodingersGat Jun 2, 2026
023f463
Fix env vars
SchrodingersGat Jun 2, 2026
32ebb47
Adjust matrix
SchrodingersGat Jun 2, 2026
ad1aae8
Adjust output names
SchrodingersGat Jun 2, 2026
6657294
Fix paths
SchrodingersGat Jun 2, 2026
b7a66ef
Simplify qc_checks
SchrodingersGat Jun 2, 2026
d54053f
Merge branch 'master' into ui-coverage
SchrodingersGat Jun 2, 2026
64a72a7
Revert missing line
SchrodingersGat Jun 2, 2026
b9a8ced
Simplify coverage calls
SchrodingersGat Jun 3, 2026
5ca3d5b
Run firefox test against port 8000
SchrodingersGat Jun 3, 2026
cc9d82b
Fix VITE_COVERAGE env var
SchrodingersGat Jun 3, 2026
3900262
Capture browser name in report output
SchrodingersGat Jun 3, 2026
cc36fe9
Increase timeout again
SchrodingersGat Jun 3, 2026
ac7f6c2
Enhanced feedback from playwright startup
SchrodingersGat Jun 3, 2026
7b27b04
Split UI checks into separate file
SchrodingersGat Jun 3, 2026
96d8b92
Merge branch 'master' into ui-coverage
SchrodingersGat Jun 3, 2026
c080d57
Fix workflow deps
SchrodingersGat Jun 3, 2026
2f0ad21
Shard chromium build
SchrodingersGat Jun 3, 2026
f0c7a8a
Adjust reporter type
SchrodingersGat Jun 3, 2026
731ca18
Reduce uncessesary build steps
SchrodingersGat Jun 3, 2026
b335262
Merge commit 'a0b2452ba5918d175df3aea0eade3a1aea6363a8' into ui-coverage
SchrodingersGat Jun 4, 2026
31c1ba4
Tweak paths filter
SchrodingersGat Jun 4, 2026
695d451
Reduce retries
SchrodingersGat Jun 4, 2026
8fb6825
Also generate HTML reports
SchrodingersGat Jun 4, 2026
f5f46f8
Tweak reporter output
SchrodingersGat Jun 4, 2026
9414c8f
Merge branch 'master' into ui-coverage
SchrodingersGat Jun 4, 2026
cf67281
Merge branch 'master' into ui-coverage
SchrodingersGat Jun 4, 2026
8bffbc6
Fix custom splash URLs
SchrodingersGat Jun 4, 2026
2070f53
Fix envs for customization tests
SchrodingersGat Jun 4, 2026
a190b8f
Shard the firefox runner too
SchrodingersGat Jun 4, 2026
c891574
Ignore customization tests for firefox too
SchrodingersGat Jun 4, 2026
a81eeff
Don't upload if tests fail
SchrodingersGat Jun 4, 2026
297e95d
Merge commit '1b8217e8b3ebb961c7aadf2b4a7ac49b37cf8263' into ui-coverage
SchrodingersGat Jun 4, 2026
6f63fe8
Fix triggers
SchrodingersGat Jun 4, 2026
171f562
Remove merged test coverage
SchrodingersGat Jun 4, 2026
ecf3bb0
Pin download action
SchrodingersGat Jun 4, 2026
abbb938
Error if no artifact files found
SchrodingersGat Jun 4, 2026
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: 1 addition & 0 deletions .github/workflows/qc_checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -754,6 +754,7 @@ jobs:
token: ${{ secrets.CODECOV_TOKEN }}
slug: inventree/InvenTree
flags: web
files: src/frontend/coverage/lcov.info
- name: Upload bundler info
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
Expand Down
4 changes: 1 addition & 3 deletions src/frontend/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,7 @@ const MAX_RETRIES: number = 3;
* - WORKERS = 1 (to avoid conflicts with HMR)
*/

const BASE_URL: string = IS_CI
? 'http://localhost:8000'
: 'http://localhost:5173';
const BASE_URL: string = 'http://localhost:5173';
Comment thread
SchrodingersGat marked this conversation as resolved.
Outdated

console.log('Running Playwright Tests:');
console.log('- Base URL:', BASE_URL);
Expand Down
Loading