File tree Expand file tree Collapse file tree 6 files changed +11
-7
lines changed Expand file tree Collapse file tree 6 files changed +11
-7
lines changed Original file line number Diff line number Diff line change 8
8
exclude : examples/|testing/tests/.*\.sh
9
9
10
10
- repo : https://github.com/maxwinterstein/shfmt-py
11
- rev : v3.7 .0.1
11
+ rev : v3.11 .0.2
12
12
hooks :
13
13
- id : shfmt
14
14
exclude : examples/t6.sh
23
23
exclude : ^testing/Baseline|examples/.*Baseline.*
24
24
25
25
- repo : https://github.com/astral-sh/ruff-pre-commit
26
- rev : v0.8.1
26
+ rev : v0.11.6
27
27
hooks :
28
28
- id : ruff
29
29
args : [--fix]
Original file line number Diff line number Diff line change
1
+ 1.2-9 | 2025-04-22 17:56:49 +0200
2
+
3
+ * Bump pre-commit hooks (Benjamin Bannier, Corelight)
4
+
1
5
1.2-7 | 2025-03-20 10:09:16 +0100
2
6
3
7
* Make btest-bg-run delay configurable (Arne Welzel, Corelight)
Original file line number Diff line number Diff line change 2
2
..
3
3
.. Version number is filled in automatically.
4
4
5
- .. |version| replace:: 1.2-7
5
+ .. |version| replace:: 1.2-9
6
6
7
7
==================================================
8
8
BTest - A Generic Driver for Powerful System Tests
Original file line number Diff line number Diff line change 1
- 1.2-7
1
+ 1.2-9
Original file line number Diff line number Diff line change 56
56
import multiprocessing .managers as mp_managers
57
57
import multiprocessing .sharedctypes as mp_sharedctypes
58
58
59
- VERSION = "1.2-7 " # Automatically filled in.
59
+ VERSION = "1.2-9 " # Automatically filled in.
60
60
61
61
Name = "btest"
62
62
Config = None
@@ -496,7 +496,7 @@ class TestManager(mp_managers.SyncManager):
496
496
# zeek processes, but runner processes executing individual test commands.
497
497
for i in range (Options .threads ):
498
498
t = mp .Process (
499
- name = f"#{ i + 1 } " , target = lambda : self .threadRun (i , mgr_data )
499
+ name = f"#{ i + 1 } " , target = lambda : self .threadRun (i , mgr_data )
500
500
)
501
501
t .start ()
502
502
threads += [t ]
Original file line number Diff line number Diff line change 5
5
py_modules = ["btest-sphinx" ]
6
6
7
7
setup (
8
- version = "1.2.dev7 " , # Filled in automatically.
8
+ version = "1.2.dev9 " , # Filled in automatically.
9
9
py_modules = py_modules ,
10
10
)
You can’t perform that action at this time.
0 commit comments