https://github.com/daboross/bash-test-script
Test Script - Tests bash projects
https://github.com/daboross/bash-test-script
Last synced: over 1 year ago
JSON representation
Test Script - Tests bash projects
- Host: GitHub
- URL: https://github.com/daboross/bash-test-script
- Owner: daboross
- License: apache-2.0
- Created: 2013-10-03T19:27:19.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2013-11-21T03:46:52.000Z (over 12 years ago)
- Last Synced: 2025-01-30T14:27:11.218Z (over 1 year ago)
- Language: Shell
- Homepage:
- Size: 113 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Bash Testing Script
===================
Script to test bash projects
When the test.sh script is run, it will check all files in the src/ directory. It will exit 1 on error, and 0 on success.
An example usage in a `.travis.yml` file for [travis-ci](http://travis-ci.org).
```
language: sh
install:
- wget https://raw.github.com/daboross/bash-test-script/master/test.sh -O test.sh
- chmod 775 test.sh
script: ./test.sh
```