🧪 update tests

This commit is contained in:
Fenny
2020-11-05 09:37:33 +01:00
parent dd9c9c547f
commit f965c69512
14 changed files with 6 additions and 20 deletions

View File

@@ -15,4 +15,4 @@ jobs:
- name: Fetch Repository
uses: actions/checkout@v2
- name: Run Test
run: cd ./memory && go test ./... -tags=memory -v -race
run: cd ./memory && go test ./... -v -race

View File

@@ -20,4 +20,4 @@ jobs:
- name: Fetch Repository
uses: actions/checkout@v2
- name: Run Test
run: go test ./mongodb -tags=mongodb -v -race
run: cd ./mongodb && go test ./... -v -race

View File

@@ -30,7 +30,7 @@ jobs:
- name: Fetch Repository
uses: actions/checkout@v2
- name: Run Test
run: go test ./mysql -tags=mysql -v -race
run: cd ./mysql && go test ./... -v -race
env:
MYSQL_USERNAME: username
MYSQL_PASSWORD: password

View File

@@ -29,7 +29,7 @@ jobs:
- name: Fetch Repository
uses: actions/checkout@v2
- name: Run Test
run: go test ./postgres -tags=postgres -v -race
run: cd ./postgres && go test ./... -v -race
env:
POSTGRES_DATABASE: fiber
POSTGRES_USERNAME: username

View File

@@ -20,4 +20,4 @@ jobs:
- name: Fetch Repository
uses: actions/checkout@v2
- name: Run Test
run: go test ./redis -tags=redis -v -race
run: cd ./redis && go test ./... -v -race

View File

@@ -15,4 +15,4 @@ jobs:
- name: Fetch Repository
uses: actions/checkout@v2
- name: Run Test
run: go test ./sqlite3 -tags=sqlite3 -v -race
run: cd ./sqlite3 && go test ./... -v -race

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

Binary file not shown.

View File

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