Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds build tags #12

Open
wants to merge 27 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
ef4ce31
added quiet flag
Jul 15, 2019
c52ec75
fixed import paths
Jul 15, 2019
e4a68fd
tidied, fixed
Jul 15, 2019
95ed88e
removed binary (oops) and made more quiet, much more quiet
Jul 15, 2019
8d295b5
Update README.md
fishybell Jul 16, 2019
0d282fd
Update README.md
fishybell Jul 16, 2019
8ea6307
added full flag
Jul 16, 2019
345357a
better log output, no panic on files getting deleted (vim be stupid s…
Jul 31, 2019
c94345f
header at the top of the test runner
Aug 16, 2019
917bf2c
pass any extra arguments directly to "go test"
Feb 3, 2020
ab42b14
less trimming of output
Apr 14, 2020
d21f5fa
bump version correctly
Apr 14, 2020
1d1d4ea
fix issues with cutting off first chars
Apr 16, 2020
b022cec
adds new flags for Smart and Once
Apr 27, 2020
4392639
no longer blows up the screen with too wide of header, updates readme
Apr 27, 2020
81a4ca0
new for 1.5.0: summary and minimal output on an "all" test
Jun 23, 2020
7002f48
allow recursing into other directories to test files not part of the …
Jul 14, 2020
9b77442
fixes bug with too strict of regex
Jul 14, 2020
69e26b1
allows going into any subdirectory
Jul 16, 2020
62b1561
allows running full tests in a subdirectory
Jul 16, 2020
2e13770
removes debug prints
Jul 16, 2020
a86ee6c
bugfix introduced in last push
Jul 16, 2020
af0c30e
better recursing, support go1.14
Aug 25, 2020
3836fcb
better debug output
Aug 25, 2020
c3f3e28
change default mod mode to mod (from readonly)
Aug 26, 2020
7d0a2ff
updates tags to be single build tag string
rochinworks Aug 4, 2021
1a22f6d
updates go.sum
rochinworks Aug 4, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: go
go: 1.12.x
install: go get github.com/axcdnt/snitch
install: go get github.com/fishybell/snitch
before_script: make check
script: make format test
after_success: make build
Expand Down
29 changes: 20 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Snitch

[![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](https://github.com/axcdnt/snitch/issues)
[![Build Status](https://travis-ci.org/axcdnt/snitch.svg?branch=master)](https://travis-ci.org/axcdnt/snitch)
[![Go Report Card](https://goreportcard.com/badge/github.com/axcdnt/snitch)](https://goreportcard.com/report/github.com/axcdnt/snitch)
[![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](https://github.com/fishybell/snitch/issues)
[![Build Status](https://travis-ci.org/fishybell/snitch.svg?branch=master)](https://travis-ci.org/fishybell/snitch)
[![Go Report Card](https://goreportcard.com/badge/github.com/fishybell/snitch)](https://goreportcard.com/report/github.com/fishybell/snitch)

<img src="https://github.com/axcdnt/snitch/blob/master/logo.png" width="200">
<img src="https://github.com/fishybell/snitch/blob/master/logo.png" width="200">

Snitch is a binary that helps your TDD cycle (or not) by watching tests and implementations of Go files.
It works by scanning files, checking the modification date on save and re-running your tests.
Expand All @@ -19,6 +19,8 @@ It was a Friday afternoon and I was writing code, but had nothing to watch and r

Inspired by [Guard](https://github.com/guard/guard), I decided to build this and thought more people could benefit from it.

Forked from [snitch](https://github.com/axcdnt/snitch), but with quieter defaults.

## Features

- Automatically runs your tests
Expand All @@ -29,11 +31,11 @@ Inspired by [Guard](https://github.com/guard/guard), I decided to build this and

## Requirements

Go 1.12+ :heart:
Go 1.12+

The binary is _go-gettable_. Make sure you have `GOPATH` correctly set and added to the `$PATH`:

`go get github.com/axcdnt/snitch`
`go get -u github.com/fishybell/snitch`

After _go-getting_ the binary, it will probably be available on your terminal.

Expand All @@ -42,11 +44,20 @@ After _go-getting_ the binary, it will probably be available on your terminal.
```
▶ snitch --help
Usage of snitch:
-tags Passes build tags to go test
-d Run with some debug output
-f [f]ull: Always run entire build
-interval duration
the interval (in seconds) for scanning files (default 1s)
The interval (in seconds) for scanning files (default 1s)
-m string
The modules mode (passed to -mod= at test time) (default "mod")
-n [n]otify: Use system notifications
-o [o]nce: Only fail once, don't run subsequent tests
-path string
the root path to be watched (default "<current-dir>")
-v Print the current version and exit
The root path to be watched (default "/Users/nbell/devel/rediq-deal-aggregator")
-q [q]uiet: Only print failing tests (use -q=false to be noisy again) (default true)
-s [s]mart: Run entire build when no test files are found
-v [v]ersion: Print the current version and exit
```

Feedback is welcome. I hope you enjoy it!
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module github.com/axcdnt/snitch
module github.com/fishybell/snitch

go 1.12

require (
github.com/fatih/color v1.7.0 // indirect
github.com/fatih/color v1.7.0
github.com/mattn/go-colorable v0.1.2 // indirect
)
1 change: 1 addition & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ github.com/mattn/go-colorable v0.1.2 h1:/bC9yWikZXAL9uJdulbSfyVNIR3n3trXl+v8+1sx
github.com/mattn/go-colorable v0.1.2/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE=
github.com/mattn/go-isatty v0.0.8 h1:HLtExJ+uU2HOZ+wI0Tt5DtUDrx8yhUqDcp7fYERX4CE=
github.com/mattn/go-isatty v0.0.8/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s=
golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223 h1:DH4skfRX4EBpamg7iV4ZlCpblAHI6s6TDM39bFZumv8=
golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
Loading