Enchantrix/Taskfile.yml
google-labs-jules[bot] d7c738bbd3 refactor(tests): Co-locate tests with source code
Moves all test files from the `tdd/` directory to their corresponding `pkg/` subdirectories. This aligns with standard Go project structure and simplifies the test coverage workflow.

- Moves `tdd/crypt/crypt_test.go` to `pkg/crypt/`
- Moves `tdd/enchantrix/enchantrix_test.go` to `pkg/enchantrix/`
- Moves `tdd/trix/trix_test.go` to `pkg/trix/`
- Simplifies the `Taskfile.yml` to use a standard `go test` command.
- Removes the now-obsolete `tdd/` directory.
- Adds generated coverage files to `.gitignore`.
2025-11-02 23:09:24 +00:00

12 lines
224 B
YAML

version: '3'
tasks:
test:
desc: "Run all tests and generate a coverage report"
cmds:
- go test -v -coverprofile=coverage.out ./...
build:
desc: "Build the project"
cmds:
- go build -v ./...