Skip to content

Commit

Permalink
Pre-release improvements.
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaszraczylo committed Dec 2, 2021
1 parent 944f878 commit b25f4c9
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ CI_RUN?=false
ADDITIONAL_BUILD_FLAGS=""

ifeq ($(CI_RUN), true)
ADDITIONAL_BUILD_FLAGS="-test.local_endpoint"
ADDITIONAL_BUILD_FLAGS="-test.short"
endif

.PHONY: help
Expand Down
3 changes: 3 additions & 0 deletions query_bench_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ import (
)

func Benchmark_GraphQL_Query(t *testing.B) {
if testing.Short() {
t.Skip("Skipping test in short / CI mode")
}
type args struct {
queryContent string
queryVariables interface{}
Expand Down
4 changes: 4 additions & 0 deletions query_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import (
)

func (suite *TestSuite) Test_GraphQL_queryBuilder() {

type args struct {
queryContent string
queryVariables interface{}
Expand Down Expand Up @@ -50,6 +51,9 @@ func (suite *TestSuite) Test_GraphQL_queryBuilder() {
}

func (suite *TestSuite) Test_GraphQL_Query() {
if testing.Short() {
suite.T().Skip("Skipping test in short / CI mode")
}
type args struct {
queryContent string
queryVariables interface{}
Expand Down
13 changes: 3 additions & 10 deletions semver.yaml
Original file line number Diff line number Diff line change
@@ -1,17 +1,10 @@
version: 1
force:
major: 1
minor: 30
minor: 0
patch: 0
commit: 4508a46ac5bf8fc5fb264fbb0de58d3b8827ba2d
wording:
patch:
- patch
- hotfix
- update
- initial
minor:
- change
- improve
- minor-release
major:
- breaking
- major-release

0 comments on commit b25f4c9

Please sign in to comment.