Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/reviewing_changes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,10 @@ jobs:
run: python -m pip install -r requirements.txt

- name: run tests in parallel
run: browserstack-sdk pytest -s tests/test.py
run: browserstack-sdk pytest -s tests/bstack-sample-test.py

- name: run local tests in parallel
run: browserstack-sdk pytest -s tests/local-test.py
run: browserstack-sdk pytest -s tests/bstack-local-test.py

- if: always()
uses: actions/github-script@98814c53be79b1d30f795b907e553d8679345975
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ PyTest Integration with BrowserStack using SDK.
## Run sample test in parallel:
* To run the sample test across platforms defined in the configuration file run:
```
browserstack-sdk pytest -s tests/test.py
browserstack-sdk pytest -s tests/bstack-sample-test.py
```

## Run a sample local test:
* To run the sample local test across platforms defined in the configuration file, you just need to set `browserstackLocal` key as true in the `browserstack.yml` file and run:
```
browserstack-sdk pytest -s tests/local-test.py
browserstack-sdk pytest -s tests/bstack-local-test.py
```

## Notes
Expand Down
2 changes: 1 addition & 1 deletion browserstack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ accessKey: YOUR_ACCESS_KEY
# Set 'projectName' to the name of your project. Example, Marketing Website
projectName: BrowserStack Samples
# Set `buildName` as the name of the job / testsuite being run
buildName: browserstack build
buildName: browserstack build
# `buildIdentifier` is a unique id to differentiate every execution that gets appended to
# buildName. Choose your buildIdentifier format from the available expressions:
# ${BUILD_NUMBER} (Default): Generates an incremental counter with every execution
Expand Down
File renamed without changes.
File renamed without changes.