-
-
Notifications
You must be signed in to change notification settings - Fork 696
Expand file tree
/
Copy pathBUILD
More file actions
29 lines (25 loc) · 701 Bytes
/
BUILD
File metadata and controls
29 lines (25 loc) · 701 Bytes
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
# Copyright 2022 Pants project contributors (see CONTRIBUTORS.md).
# Licensed under the Apache License, Version 2.0 (see LICENSE).
python_sources()
python_tests(
name="tests",
overrides={
"test_integration_test.py": {
"dependencies": [":jest_resources", ":mocha_resources"],
"timeout": 240,
},
"export_test.py": {
"dependencies": [":jest_resources"],
"timeout": 240,
"tags": ["platform_specific_behavior"],
},
},
)
resources(
name="jest_resources",
sources=["test_resources/jest_project/**"],
)
resources(
name="mocha_resources",
sources=["test_resources/mocha_project/**"],
)