Skip to content
Snippets Groups Projects
Commit ea7b2949 authored by David Vorick's avatar David Vorick
Browse files

switch 2 disk tests to long

parent 80f11cfc
No related branches found
No related tags found
Loading
......@@ -78,6 +78,9 @@ func TestLatestRelease(t *testing.T) {
// TestNewServer verifies that NewServer creates a Sia API server correctly.
func TestNewServer(t *testing.T) {
if testing.Short() {
t.SkipNow()
}
var wg sync.WaitGroup
config := Config{}
config.Siad.APIaddr = "localhost:0"
......
......@@ -44,6 +44,9 @@ func (newStub) ScoreBreakdown(modules.HostDBEntry) modules.HostScoreBreakdown {
// TestNew tests the New function.
func TestNew(t *testing.T) {
if testing.Short() {
t.SkipNow()
}
// Using a stub implementation of the dependencies is fine, as long as its
// non-nil.
var stub newStub
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment