Skip to content

Commit bf7e362

Browse files
committed
fix: missing opentelemetry api dep
Signed-off-by: William Phetsinorath <william.phetsinorath-open@interieur.gouv.fr>
1 parent b94a99d commit bf7e362

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+368
-4637
lines changed

.dockerignore

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,6 @@ npm-debug.log
1313
.stylelintrc.js
1414
.stylelintrc.cjs
1515

16-
# Cypress
17-
**/cypress.config.ts
18-
**/cypress
19-
2016
# Tests
2117
.turbo/
2218
coverage/

.github/workflows/job-tests-e2e.yml

Lines changed: 0 additions & 121 deletions
This file was deleted.

.github/workflows/job-tests-unit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,8 +161,8 @@ jobs:
161161
-Dsonar.sources=apps,packages
162162
-Dsonar.javascript.node.maxspace=4096
163163
-Dsonar.javascript.lcov.reportPaths=coverage/apps/server/coverage/lcov.info,coverage/apps/client/coverage/lcov.info,coverage/packages/shared/coverage/lcov.info
164-
-Dsonar.coverage.exclusions=**/*.spec.js,**/*.spec.ts,**/*.vue,**/assets/**,**/cypress/**,**/packages/test-utils/**,apps/server/src/plugins/**
165-
-Dsonar.cpd.exclusions=**/*.spec.js,**/*.spec.ts,**/cypress/**
164+
-Dsonar.coverage.exclusions=**/*.spec.js,**/*.spec.ts,**/*.vue,**/assets/**,**/packages/test-utils/**,apps/server/src/plugins/**
165+
-Dsonar.cpd.exclusions=**/*.spec.js,**/*.spec.ts
166166
-Dsonar.scm.provider=git
167167
${{ github.event_name == 'pull_request' && steps.sonar-args.outputs.SONAR_ARGS_PR || steps.sonar-args.outputs.SONAR_ARGS_BRANCH }}
168168
continue-on-error: true

.github/workflows/workflow-continuous-integration.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ jobs:
5353
- '.github/workflows/**'
5454
e2e:
5555
- 'playwright/**'
56-
- 'apps/client/cypress/**'
5756
5857
expose-vars:
5958
runs-on: ubuntu-latest

.github/workflows/workflow-merge-queue.yml

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ jobs:
4848
- '.github/workflows/**'
4949
e2e:
5050
- 'playwright/**'
51-
- 'apps/client/cypress/**'
5251
5352
expose-vars:
5453
runs-on: ubuntu-latest
@@ -121,19 +120,6 @@ jobs:
121120
NODE_VERSION: ${{ needs.expose-vars.outputs.NODE_VERSION }}
122121
TAG: pr-${{ github.event.number || needs.expose-vars.outputs.MERGE_GROUP_HEAD_SHA }}
123122

124-
cypress-tests:
125-
uses: ./.github/workflows/job-tests-e2e.yml
126-
if: ${{ needs.path-filter.outputs.apps == 'true' || needs.path-filter.outputs.packages == 'true' || needs.path-filter.outputs.ci == 'true' || needs.path-filter.outputs.e2e == 'true' }}
127-
needs:
128-
- playwright-tests
129-
- path-filter
130-
- expose-vars
131-
- build
132-
with:
133-
NODE_VERSION: ${{ needs.expose-vars.outputs.NODE_VERSION }}
134-
TAG: pr-${{ github.event.number || needs.expose-vars.outputs.MERGE_GROUP_HEAD_SHA }}
135-
BROWSERS: "${{ github.base_ref == 'main' && 'chrome,firefox' || 'firefox' }}"
136-
137123
scan-vuln:
138124
uses: ./.github/workflows/job-scan.yml
139125
needs:
@@ -155,7 +141,6 @@ jobs:
155141
- lint
156142
- unit-tests
157143
- build
158-
- cypress-tests
159144
- playwright-tests
160145
- scan-vuln
161146
steps:

.gitignore

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,6 @@ node_modules
2121
.env.codespace
2222
.env.docker
2323

24-
# cypress
25-
screenshots
26-
downloads
27-
2824
# init-db
2925
apps/server/src/init/db/imports/data
3026

AGENTS.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,8 @@ Migrations: standard Prisma Migrate. Major version data migrations in `migration
4949
## Testing
5050

5151
- **Vitest**: unit tests everywhere (server, client, packages, plugins) — colocated `*.spec.ts` files
52-
- **Cypress 15**: component + E2E tests in `apps/client` (Firefox default)
5352
- **Playwright**: E2E in `playwright/` (Chromium + Firefox, parallel)
54-
- Commands: `pnpm test` (all unit), `pnpm test:ct` (Cypress components), `pnpm playwright:test`
53+
- Commands: `pnpm test` (all unit), `pnpm playwright:test`
5554

5655
## Code quality
5756

@@ -64,7 +63,7 @@ Migrations: standard Prisma Migrate. Major version data migrations in `migration
6463

6564
- Shared base: `packages/tsconfig/tsconfig.base.json` — ESNext, NodeNext, strict, `@/* -> src/*` alias
6665
- Server: extends shared base, uses `ts-patch`/`tspc` for path transform in emitted JS
67-
- Client: does NOT extend shared base (Cypress incompatibility), uses `Bundler` module resolution
66+
- Client: does NOT extend shared base, uses `Bundler` module resolution
6867
- server-nestjs: standalone config with `emitDecoratorMetadata` + `experimentalDecorators`
6968

7069
## Main commands

apps/client/cypress.config.ts

Lines changed: 0 additions & 80 deletions
This file was deleted.

0 commit comments

Comments
 (0)