generated from thoth-station/template-project
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.prow.yaml
43 lines (41 loc) · 1.02 KB
/
.prow.yaml
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
presubmits:
- name: pre-commit
decorate: true
skip_report: false
always_run: true
context: aicoe-ci/prow/pre-commit
spec:
containers:
- image: quay.io/thoth-station/thoth-precommit-py38:v0.14.3
command:
- "pre-commit"
- "run"
- "--all-files"
resources:
requests:
memory: "1Gi"
cpu: "500m"
limits:
memory: "1Gi"
cpu: "1"
- name: thoth-mypy-py38
decorate: true
skip_report: false
always_run: true
context: aicoe-ci/prow/mypy
spec:
containers:
- image: quay.io/thoth-station/thoth-pytest-ubi8-py38:v0.14.3
command:
- "/bin/run-mypy"
- "."
- --ignore-missing-imports
- --exclude
- "docs/|tests/|setup.py"
resources:
requests:
memory: "1Gi"
cpu: "500m"
limits:
memory: "1Gi"
cpu: "1"