Integration tests are tagged for conditional compilation

pull/78/head
Jakub Matys 2018-10-04 10:40:25 +02:00
parent 47cd9421a7
commit 911c62fb32
9 changed files with 18 additions and 0 deletions

2
tests/doc.go 100644
View File

@ -0,0 +1,2 @@
// Package tests provides functions for loading and running integration tests
package tests

View File

@ -1,3 +1,5 @@
// +build integration
package tests
import (

2
tests/rpc/doc.go 100644
View File

@ -0,0 +1,2 @@
// Package rpc implements integration tests of blockchain RPC layer
package rpc

View File

@ -1,3 +1,5 @@
// +build integration
package rpc
import (

View File

@ -1,3 +1,5 @@
// +build integration
package sync
import (

View File

@ -0,0 +1,2 @@
// Package sync implements integration tests of synchronization code
package sync

View File

@ -1,3 +1,5 @@
// +build integration
package sync
import (

View File

@ -1,3 +1,5 @@
// +build integration
package sync
import (

View File

@ -1,3 +1,5 @@
// +build integration
package sync
import (