-
Notifications
You must be signed in to change notification settings - Fork 5
62 lines (59 loc) · 1.76 KB
/
tests-api-e2e.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: Tests - API e2e tests
on:
push:
paths:
- 'api/**'
- 'geoprocessing/**'
- '.github/**'
workflow_dispatch:
jobs:
test-api-e2e:
name: E2E tests - API
runs-on: ubuntu-22.04
timeout-minutes: 60
strategy:
fail-fast: false
max-parallel: 6
matrix:
test-suite:
- 'access-control'
- 'api-events'
- 'async-jobs-garbage-collector'
- 'business-critical'
- 'calculate-pu-protection-level'
- 'cloning'
- 'files-repository'
- 'geo-features'
- 'implicit-permissions'
- 'integration'
- 'legacy-project-import'
- 'projects/blm-calibration'
- 'projects/crud'
- 'projects/project-feature-tags'
- 'projects/user-projects'
- 'projects/cost-surfaces'
- 'projects/project-cloning'
- 'projects/project-scenario-comparison'
- 'projects/project-summaries'
- 'projects/published-projects'
- 'project-jobs-status'
- 'project-planning-areas-tiles'
- 'project-planning-units'
- 'project-protected-areas'
- 'scenario-cost-template'
- 'scenario-difference-map-tiles'
- 'scenario-features'
- 'scenario-input-files'
- 'scenario-locks'
- 'scenario-protected-areas'
- 'scenario-pu-change'
- 'scenario-run-results'
- 'scenarios'
- 'scenario-solutions'
- 'scenarios-pu-data'
- 'upload-feature'
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run CI tests via make task
run: TEST_SUITE_PATH="${{ matrix.test-suite }}" make test-e2e-api environment=ci