<!--- Please direct any generic questions related to actions to our support community forum at https://github.community/c/code-to-cloud/github-actions/41 ---> <!--- Before opening up a new bug report, please make sure to check for similar existing issues --> **Description:** * README example uses command that does not exist. * GitHub Actions does not have it (`ERROR: unknown command "test"`). * Pip documentation does not have it (https://pip.pypa.io/en/stable/cli/). * Online search does not have it (https://duckduckgo.com/?q=python+%22pip+test%22). **Action version:** * `- uses: actions/setup-python@v2` **Platform:** - [x] Ubuntu - [ ] macOS - [ ] Windows **Runner type:** - [x] Hosted - [ ] Self-hosted **Tools version:** <!--- Please list all of the affected Python versions (`3.8.2`, etc.)--> * 3.9.9 * Likely all versions **Repro steps:** 1. Copy caching example from README under **Caching pip dependencies** into your GitHub Actions workflow. 2. Run it. 3. See `ERROR: unknown command "test"` under `Run pip test` action. --- 1. Remove the line `- run: pip test` 2. Actions finishes successfully. **Expected behavior:** * Successful action with successful caching. * One possible alternative: `pip check`. However, is this necessary after running `pip install`? **Actual behavior:** * Command not found.
Description:
ERROR: unknown command "test").Action version:
- uses: actions/setup-python@v2Platform:
Runner type:
Tools version:
Repro steps:
ERROR: unknown command "test"underRun pip testaction.- run: pip testExpected behavior:
pip check. However, is this necessary after runningpip install?Actual behavior: