Skip to content

Commit 661bd82

Browse files
committed
updated bash scripts setup_*
1 parent 7a2118b commit 661bd82

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

scripts/setup_paths.sh

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,12 @@
22

33
# ------------------------------ add folder compiler file path here
44
export DIR_COMPILER = ${OPENTCAM_ROOT}/compiler
5-
65
# --------------- config files
76
export DIR_COMP_CONFIGS = ${DIR_COMPILER}/configs
8-
97
# --------------- tcam table maps
108
export DIR_COMP_LIB = ${DIR_COMPILER}/lib
11-
129
# --------------- py source code
1310
export DIR_COMP_SRC = ${DIR_COMPILER}/src
14-
1511
# --------------- py tests
1612
export DIR_COMP_TESTS = ${DIR_COMPILER}/tests
1713

@@ -26,3 +22,6 @@ export DIR_DOCS = ${OPENTCAM_ROOT}/docs
2622

2723
# ------------------------------ add folder images file path here
2824
export DIR_IMAGES = ${OPENTCAM_ROOT}/images
25+
26+
# ------------------------------ add folder logs file path here
27+
export DIR_LOGS = ${OPENTCAM_ROOT}/logs

scripts/setup_vars.sh

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,11 @@ MARKER :=
2626

2727
# python coverage args
2828
COV_TITLE := "OpenTCAM Coverage"
29-
COV_FOLDER := "coverage_html"
29+
COV_FOLDER := "coverage_html"
30+
31+
# python pylint args
32+
# to configure OUTPUT_FMT see output-format flag in compiler/configs/.pylintrc
33+
FORMAT := msvs
34+
COLOR := colorized
35+
SCORE := y
36+
REPORTS := y

0 commit comments

Comments
 (0)