We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a60675 commit d2e5f0aCopy full SHA for d2e5f0a
CHANGELOG.md
@@ -3,6 +3,7 @@
3
## Unreleased
4
5
- Fix bench tests missing test_file var
6
+- Fix compatibility with older python versions for clock::now
7
8
## [0.25.0](https://github.com/TypedDevs/bashunit/compare/0.23.0...0.24.0) - 2025-10-05
9
src/clock.sh
@@ -76,7 +76,7 @@ function clock::now() {
76
python)
77
python - <<'EOF'
78
import time, sys
79
-sys.stdout.write(str(int(time.time() * 1_000_000_000)))
+sys.stdout.write(str(int(time.time() * 1000000000)))
80
EOF
81
;;
82
node)
0 commit comments