-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpath_scion.py
More file actions
27 lines (23 loc) · 830 Bytes
/
path_scion.py
File metadata and controls
27 lines (23 loc) · 830 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
from . import defs
path_files_rel_paths = [
"pkg/slayers/path/scion/base.go",
"pkg/slayers/path/scion/base_spec.gobra",
"pkg/slayers/path/scion/decoded.go",
"pkg/slayers/path/scion/decoded_spec.gobra",
"pkg/slayers/path/scion/raw.go",
"pkg/slayers/path/scion/raw_spec.gobra",
]
path_test_files_rel_paths = [
"pkg/slayers/path/scion/base_spec_test.gobra",
"pkg/slayers/path/scion/decoded_spec_test.gobra",
"pkg/slayers/path/scion/raw_spec_test.gobra",
]
path_files = list(map(defs.relative_path, path_files_rel_paths))
path_test_files = list(map(defs.relative_path, path_test_files_rel_paths))
path_cfg = defs.GobraConfig(
inputs = path_files,
# testFiles = dataplane_test_files_rel_paths,
conditionalizePermissions = False,
mceMode = "on",
parallelizeBranches = True,
)