With this change, the following command will not run the refresh tests:
go test -v --count=1 ./test/suites/edgexfoundry
But the following will:
go test -v --count=1 ./test/suites/edgexfoundry/refresh
go test -v --count=1 ./test/suites/edgexfoundry/...
As a result, the refresh tests will no longer run with the current configuration of the snap testing workflow. This is expected because we don't need to have passing tests right now as we are going through a major change upstream.
Fixes #117
With this change, the following command will not run the refresh tests:
But the following will:
As a result, the refresh tests will no longer run with the current configuration of the snap testing workflow. This is expected because we don't need to have passing tests right now as we are going through a major change upstream.