Skip to content

Commit

Permalink
refactor: move bdd (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanHope committed May 27, 2024
1 parent 1e7c816 commit a20ff45
Show file tree
Hide file tree
Showing 25 changed files with 3 additions and 8 deletions.
5 changes: 0 additions & 5 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@ tasks:
lint:
cmds:
- golangci-lint run --config .golangci.yml --timeout 3m
test-bdd:
dir: test
cmds:
- go test --tags "fts5"
test-internal:
dir: internal
cmds:
Expand All @@ -20,7 +16,6 @@ tasks:
cmds:
- task: test-internal
- task : test-cmd
- task: test-bdd
build-cli:
dir: cmd/cli
cmds:
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion cmd/cli/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"os"

"github.com/alecthomas/kong"
"github.com/jonathanhope/armaria/cmd/cli/cmd"
"github.com/jonathanhope/armaria/cmd/cli/internal"
)

var version string
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion test/steps.go → cmd/cli/test/steps.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"github.com/cucumber/godog"
"github.com/google/go-cmp/cmp"
"github.com/google/uuid"
"github.com/jonathanhope/armaria/cmd/cli/cmd"
"github.com/jonathanhope/armaria/cmd/cli/internal"
"github.com/jonathanhope/armaria/internal/null"
)

Expand Down
2 changes: 1 addition & 1 deletion test/test_helpers.go → cmd/cli/test/test_helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"github.com/cucumber/godog"
"github.com/google/shlex"
"github.com/google/uuid"
"github.com/jonathanhope/armaria/cmd/cli/cmd"
"github.com/jonathanhope/armaria/cmd/cli/internal"
"github.com/jonathanhope/armaria/internal/null"
"github.com/jonathanhope/armaria/pkg/api"
"github.com/jonathanhope/armaria/pkg/model"
Expand Down

0 comments on commit a20ff45

Please sign in to comment.