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
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -57,8 +57,8 @@ Before sending us a pull request, please ensure that:
57
57
### Running the Unit Tests
58
58
59
59
1. Install tox using `pip install tox`
60
-
1. Install test dependencies, including coverage, using `pip install .[test]`
61
60
1. cd into the aws-step-functions-data-science-sdk-python folder: `cd aws-step-functions-data-science-sdk-python` or `cd /environment/aws-step-functions-data-science-sdk-python`
61
+
1. Install test dependencies, including coverage, using `pip install ".[test]"`
62
62
1. Run the following tox command and verify that all code checks and unit tests pass: `tox tests/unit`
63
63
64
64
You can also run a single test with the following command: `tox -e py36 -- -s -vv <path_to_file><file_name>::<test_function_name>`
@@ -80,7 +80,7 @@ You should only worry about manually running any new integration tests that you
80
80
81
81
1. Create a new git branch:
82
82
```shell
83
-
git checkout -b my-fix-branch master
83
+
git checkout -b my-fix-branch
84
84
```
85
85
1. Make your changes, **including unit tests** and, if appropriate, integration tests.
86
86
1. Include unit tests when you contribute new features or make bug fixes, as they help to:
0 commit comments