You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Small fixes (contribution docu, integration tests) (#3684)
* use "command" constant for env setup tests
* update branches in contribution guide
* remove "units-full" goal in testing guide (is same as "units" now)
and [Internationalization Guide](https://github.com/cloudfoundry/cli/wiki/Internationalization-Guide).
35
35
1. Fork the project repository.
36
-
1. Create a feature branch from the earliest branch that's [appropriate for your change](#cli-versions) (e.g. `git checkout v8 && git checkout -b better_cli`) and make changes on this branch
36
+
1. Create a feature branch from the earliest branch that's [appropriate for your change](#cli-versions) (e.g. for v9 `git checkout main && git checkout -b main_better_cli`) and make changes on this branch
37
37
* Follow the other sections on this page to [set up your development environment](#development-environment-setup), [build `cf`](#building-the-cf-binary) and [run the tests](#testing).
38
38
* Tests are required for any changes.
39
-
1. Push to your fork (e.g. `git push origin better_cli`) and [submit a pull request](https://help.github.com/articles/creating-a-pull-request)
40
-
1. The cf CLI team will merge your changes from the versioned branch (e.g. v8) to main for you after the PR is merged.
39
+
1. Push to your fork (e.g. `git push origin main_better_cli`) and [submit a pull request](https://help.github.com/articles/creating-a-pull-request)
40
+
1. The cf CLI team will merge your PR after review.
41
41
42
42
Note: All contributions must be sent using GitHub Pull Requests.
43
43
We prefer a small, focused pull request with a clear message
@@ -97,12 +97,9 @@ how to cross compile binaries for other architectures.
97
97
To run the unit tests:
98
98
```bash
99
99
cd cli
100
-
make units-full # will run all unit tests
101
-
make units # runs all non-cf directory unit tests
100
+
make units
102
101
```
103
-
104
-
**Note: `make units-full` is recommended over `make units` if you are unsure of
105
-
how wide-reaching the intended changes are.**
102
+
(For historic reasons, there are multiple synonyms in the `Makefile`.)
0 commit comments