diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 56518bfc..ec896483 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -21,7 +21,7 @@ Contributions are always welcome! Please use the following guidelines when contr - `chore` - Catch all or things that have to do with the build system, etc - `examples` - Changes to existing example, or a new example * The `COMPONENT` is optional, and may be a single file, directory, or logical component. Can be omitted if commit applies globally -5. Run the tests (`cargo test && make -C clap-tests test`) +5. Run the tests (`cargo test --features yaml && make -C clap-tests test`) 6. `git rebase` into concise commits and remove `--fixup`s (`git rebase -i HEAD~NUM` where `NUM` is number of commits back) 7. Push your changes back to your fork (`git push origin $your-branch`) 8. Create a pull request! (You can also create the pull request first, and we'll merge when ready. This a good way to discuss proposed changes.) diff --git a/README.md b/README.md index 232409c3..a094c138 100644 --- a/README.md +++ b/README.md @@ -438,7 +438,7 @@ Contributions are always welcome! And there is a multitude of ways in which you - `chore` - Catch all or things that have to do with the build system, etc - `examples` - Changes to existing example, or a new example * The `COMPONENT` is optional, and may be a single file, directory, or logical component. Can be omitted if commit applies globally -5. Run the tests (`cargo test && make -C clap-tests test`) +5. Run the tests (`cargo test --features yaml && make -C clap-tests test`) 6. `git rebase` into concise commits and remove `--fixup`s (`git rebase -i HEAD~NUM` where `NUM` is number of commits back) 7. Push your changes back to your fork (`git push origin $your-branch`) 8. Create a pull request! (You can also create the pull request first, and we'll merge when ready. This a good way to discuss proposed changes.) @@ -450,7 +450,7 @@ Another really great way to help is if you find an interesting, or helpful way i If contributing, you can run the tests as follows (assuming you're in the `clap-rs` directory) ``` -cargo test && make -C clap-tests test +cargo test --features yaml && make -C clap-tests test ``` ### Goals