Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
arduino-cli
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Operations
Operations
Metrics
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
arduino-cli
Commits
a27cd0ce
Commit
a27cd0ce
authored
Jun 05, 2019
by
Massimiliano Pippi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use task to run tests
parent
dc72008f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
0 deletions
+23
-0
Taskfile.yml
Taskfile.yml
+23
-0
No files found.
Taskfile.yml
0 → 100644
View file @
a27cd0ce
version
:
'
2'
tasks
:
build
:
desc
:
Build the project
cmds
:
-
go build -v -i
test
:
desc
:
Run the full testsuite
cmds
:
-
task
:
test-unit
-
task
:
test-integration
test-unit
:
desc
:
Run unit tests only
cmds
:
-
go test -short {{ default "-v" .GOFLAGS }} {{ default "./..." .TARGETS }}
test-integration
:
desc
:
Run integration tests only
cmds
:
-
go test -run Integration {{ default "-v" .GOFLAGS }} {{ default "./..." .TARGETS }}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment