Skip to content

Commit a4cc106

Browse files
committed
script: remove script/integration
1 parent 998a5bb commit a4cc106

File tree

6 files changed

+5
-260
lines changed

6 files changed

+5
-260
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ Before submitting changes, be sure to run the Go tests and the shell integration
112112
tests:
113113

114114
$ script/test # runs just the Go tests
115-
$ script/integration # runs the shell tests in ./test
115+
$ cd t && make test # runs the shell tests in ./test
116116
$ script/cibuild # runs everything, with verbose debug output
117117

118118
## Updating 3rd party packages

rpm/SPECS/git-lfs.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export SKIPAPITESTCOMPILE=1
6868
pushd src/github.com/git-lfs/%{name}
6969
./script/test
7070
go get github.com/ThomsonReutersEikon/go-ntlm/ntlm
71-
./script/integration
71+
cd t && make test
7272
popd
7373

7474
rmdir ${GIT_LFS_TEST_DIR}

script/integration

Lines changed: 0 additions & 44 deletions
This file was deleted.

script/integration.go

Lines changed: 0 additions & 209 deletions
This file was deleted.

script/script.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ func main() {
2020
mainBuild()
2121
case "release":
2222
mainRelease()
23-
case "integration":
24-
mainIntegration()
2523
default:
2624
log.Fatalln("Unknown command:", *SubCommand)
2725
}

t/testhelpers.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -313,9 +313,9 @@ wait_for_file() {
313313

314314
# setup_remote_repo initializes a bare Git repository that is accessible through
315315
# the test Git server. The `pwd` is set to the repository's directory, in case
316-
# further commands need to be run. This server is running for every test in a
317-
# script/integration run, so every test file should setup its own remote
318-
# repository to avoid conflicts.
316+
# further commands need to be run. This server is running for every test in an
317+
# integration run, so every test file should setup its own remote repository to
318+
# avoid conflicts.
319319
#
320320
# $ setup_remote_repo "some-name"
321321
#

0 commit comments

Comments
 (0)