-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add-github-actions #12
Conversation
79779a9
to
29691ca
Compare
29691ca
to
f724ace
Compare
08eda92
to
b6ae2b5
Compare
9fdf29d
to
ac2bcf1
Compare
e42cf74
to
8240755
Compare
8240755
to
c067980
Compare
f938b04
to
4980cd6
Compare
4980cd6
to
7fc92ca
Compare
8d39097
to
cf80869
Compare
cf80869
to
1f89969
Compare
4b9979c
to
de81c58
Compare
de81c58
to
f173f17
Compare
readme.md
Outdated
``` | ||
- After installing Bats, you can run your tests locally using the following command: | ||
```bash | ||
bats tests/test_scan_command.bats |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe better to not hard-code the filename incase we add other tests as well?
bats tests/test_scan_command.bats | |
bats tests/<path-to-the-test-file> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can it be done this way?
bats tests/*.bats
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, that will work and in the future a developer can run all the bats tests without needing to know what the filename(s) are.
phil@phil-Inspiron-5468:~/git/JankariTech/expected-failures-updater$ bats tests/*.bats
✓ detect removed scenarios
✓ detect new added scenarios
2 tests, 0 failures
82a96ed
to
d8b086b
Compare
Co-authored-by: Sagar Gurung <[email protected]>
Description
Here ,setup of GitHub actions workflow is added to test only
Issue
#11