Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Job Queues
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Jira
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container registry
Monitor
Service Desk
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OSS
Libraries
Go
Services
Job Queues
Commits
993d1d26
Verified
Commit
993d1d26
authored
1 year ago
by
Volker Schukai
Browse files
Options
Downloads
Patches
Plain Diff
chore: remove race and cover tests from ci pipeline
parent
bdb422a0
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.idea/workspace.xml
+1
-4
1 addition, 4 deletions
.idea/workspace.xml
nix/scripts/run-ci-tests.nix
+1
-14
1 addition, 14 deletions
nix/scripts/run-ci-tests.nix
with
2 additions
and
18 deletions
.idea/workspace.xml
+
1
−
4
View file @
993d1d26
...
...
@@ -6,10 +6,7 @@
<component
name=
"ChangeListManager"
>
<list
default=
"true"
id=
"9979eb22-471e-4f2f-b624-fd3edb5e8c6e"
name=
"Changes"
comment=
""
>
<change
beforePath=
"$PROJECT_DIR$/.idea/workspace.xml"
beforeDir=
"false"
afterPath=
"$PROJECT_DIR$/.idea/workspace.xml"
afterDir=
"false"
/>
<change
beforePath=
"$PROJECT_DIR$/database-6_test.go"
beforeDir=
"false"
afterPath=
"$PROJECT_DIR$/database-6_test.go"
afterDir=
"false"
/>
<change
beforePath=
"$PROJECT_DIR$/issue-1_test.go"
beforeDir=
"false"
afterPath=
"$PROJECT_DIR$/issue-1_test.go"
afterDir=
"false"
/>
<change
beforePath=
"$PROJECT_DIR$/manager.go"
beforeDir=
"false"
afterPath=
"$PROJECT_DIR$/manager.go"
afterDir=
"false"
/>
<change
beforePath=
"$PROJECT_DIR$/nix/scripts/run-tests.nix"
beforeDir=
"false"
afterPath=
"$PROJECT_DIR$/nix/scripts/run-tests.nix"
afterDir=
"false"
/>
<change
beforePath=
"$PROJECT_DIR$/nix/scripts/run-ci-tests.nix"
beforeDir=
"false"
afterPath=
"$PROJECT_DIR$/nix/scripts/run-ci-tests.nix"
afterDir=
"false"
/>
</list>
<option
name=
"SHOW_DIALOG"
value=
"false"
/>
<option
name=
"HIGHLIGHT_CONFLICTS"
value=
"true"
/>
...
...
This diff is collapsed.
Click to expand it.
nix/scripts/run-ci-tests.nix
+
1
−
14
View file @
993d1d26
...
...
@@ -15,24 +15,11 @@ in
setup_go_env
echo_section "Running tests"
if !
${
pkgs
.
go
}
/bin/go test -tags "runOnTask"
-cover
./...
if !
${
pkgs
.
go
}
/bin/go test -tags "runOnTask" ./...
then
echo_fail "Failed to run tests"
exit 1
fi
echo_section "Running tests"
if !
${
pkgs
.
go
}
/bin/go test -tags "runOnTask,bench" -bench ./...
then
echo_fail "Failed to run benchmarks"
exit 1
fi
echo_section "Running tests"
if !
${
pkgs
.
go
}
/bin/go test -tags "runOnTask,race" -race ./...
then
echo_fail "Failed to run race tests"
exit 1
fi
''
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment