
The ADHD focused test runner
hypertest
is an open-source CLI tool designed to help you maintain focus on the current coding subtask, built specifically for the easily distracted.
A better way to run tests
Run tests in the background while coding, results displayed as a live auto-updating todo list.

Try it for yourself:
nabaz hypertest --cmdline "pytest -v"
Get Started
From source 🧙♂️
# Install nabaz binary.
export GOPATH=`go env GOPATH`
go install github.com/nabaz-io/nabaz/cmd/nabaz@latest
# Required for go test support
mkdir -p $GOPATH/github.com/nabaz-io
cd $GOPATH/github.com/nabaz-io
git clone https://github.com/nabaz-io/go
cd go/src
./make.bash
mv $GOPATH/src/github.com/nabaz-io/go /usr/local/nabaz-go
# Required for pytest support
pip3 install pytest pytest-cov pytest-json pytest-json-report pytest-metadata pydantic
# Verify install
$ nabaz version
version 0.0
Linux 🐧
# Ubuntu
wget -qO- https://nabaz.jfrog.io/artifactory/api/security/keypair/nabazgpg/public | apt-key add -
echo "deb [arch=amd64] https://nabaz.jfrog.io/artifactory/nabaz-debian-local stable main" >> /etc/apt/sources.list
sudo apt update
sudo apt install -y nabaz
Running Tests
pytest
nabaz hypertest --cmdline "pytest -v" .
go test
nabaz hypertest --cmdline "go test ./..."
Language Support
Languages
- Python 🐍
- Go
- Java (Coming soon)
- .NET/C# (Coming soon)
- Javascript (TBD)
- C/C++ (not planned currently)
- Request here
Frameworks
Building
go build -o nabaz ./cmd/nabaz
at [email protected].
License
Licensed under the MIT license.