Specifies working command to run tests on Windows

This commit is contained in:
Aaron Kunkle 2021-04-22 14:02:02 -07:00 коммит произвёл GitHub
Родитель 51f1f174c7
Коммит 167a9995d2
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 13 добавлений и 1 удалений

Просмотреть файл

@ -50,6 +50,13 @@ For some scenarios (not all), `pre.py` runs a defined precommand before the test
Format for running precommands:
```
cd <asset directory> # switch to the specific asset directory
```
#### Windows
```
py pre.py <command> <options> # run precommand
```
#### Linux
```
python3 pre.py <command> <options> # run precommand
```
In our **startup time of an empty console template** example, we can run
@ -67,6 +74,11 @@ Upon this step, the project source code should exist under `app\` directory. The
`test.py` runs the test with a set of defined attributes.
Format for running test commands:
#### Windows
```
py test.py <command> <test-specific options>
```
#### Linux
```
python3 test.py <command> <test-specific options>
```
@ -94,4 +106,4 @@ Some command options are only applicable for certain test assets. Refer to the c
- [SDK Command Matrix](.\sdk-scenarios.md#command-matrix)
- [Crossgen Command Matrix](.\crossgen-scenarios.md#command-matrix)
- [Blazor Command Matrix](.\blazor-scenarios.md#command-matrix)
- [Other Scenarios Command Matrix](.\other-scenarios.md#command-matrix)
- [Other Scenarios Command Matrix](.\other-scenarios.md#command-matrix)