Skip to content
This repository was archived by the owner on Jun 26, 2024. It is now read-only.

Commit 0bb41a4

Browse files
committed
Include test/performance in Python linter
1 parent 7b9fee1 commit 0bb41a4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

hack/check-python/prepare-env.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
directories=${directories:-"test/acceptance/features"}
1+
directories=${directories:-"test/acceptance/features test/performance"}
22
pass=0
33
fail=0
44

test/performance/kpidiff.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
raw = bool(args.raw)
1616

1717
with open(a_yaml_file, "r") as a_yaml:
18-
with (open(b_yaml_file, "r") as b_yaml):
18+
with open(b_yaml_file, "r") as b_yaml:
1919
a_kpi = yaml.safe_load(a_yaml)["kpi"]
2020
b_kpi = yaml.safe_load(b_yaml)["kpi"]
2121

0 commit comments

Comments
 (0)