canonical / edgex-snap-testing

4 stars 2 forks source link

Split refresh tests to a separate package #147

Closed farshidtz closed 1 year ago

farshidtz commented 1 year ago

Fixes #117

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.