binpash / try

Inspect a command's effects before modifying your live system
MIT License
5.17k stars 64 forks source link

`test/run_tests.sh` vanished #160

Closed gschwaer closed 1 month ago

gschwaer commented 1 month ago

b6ffc452f72731ce26a6f6535dacbcaaa670d95e removed test/run_tests.sh but multiple files still reference it:

$ grep -rI 'run_tests.sh' .
./README.md:To run `try`'s test suite (`test/run_tests.sh`), you will need:
./scripts/README.md:The `run_tests.sh` script runs the test suite.
./.github/workflows/test.yaml:          scripts/run_tests.sh
./test/README.md:`scripts/run_tests.sh` will run all of the tests in this directory
./test/README.md:You can select a specific test by running `scripts/run_tests.sh a b`;
./Vagrantfile:      scripts/run_tests.sh
./Vagrantfile:      scripts/run_tests.sh
./Vagrantfile:      TRY_TOP=$(pwd) scripts/run_tests.sh
./Vagrantfile:      TRY_TOP=$(pwd) scripts/run_tests.sh
gschwaer commented 1 month ago

Ah, now I get it. the file was moved to scripts/, it was not obvious from git log --stat or the commit message.

So the only real issue is that the main README.md still lists the path as test/run_tests.sh:

$ grep -rI 'test/run_tests.sh' .
./README.md:To run `try`'s test suite (`test/run_tests.sh`), you will need: