Closed tstromberg closed 1 month ago
I'll have a fix for this in my next PR.
go test $(shell go list ./... | grep -Ev "samples|test_data")
should be
go test $(shell go list ./... | grep -Ev "^samples\$|test_data")
That said, the tests seem to be running in test_data
even when filtering it out, so the tests can't find the actual samples.
As much as I'd love to believe all tests are passing in less than 2 seconds, I know it isn't true:
Notice that
samples_test
does not exist there.This means we are more likely to be introducing false-positives.