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
2 changes: 1 addition & 1 deletion contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ anyone can add to an issue:
## Fixes, Implementations, and Documentation

For all other things, please submit a PR that includes the fix, documentation, or new code that you are trying to contribute. More information on
creating a PR can be found in the [github documentation](https://help.github.com/articles/creating-a-pull-request/)
creating a PR can be found in the [Development Guide](docs/docs/dev-guide.md)

If the feature is complex or has multiple solutions that could be equally appropriate approaches, it would be helpful to file an issue to discuss the
design trade-offs of each solution before implementing, to allow us to collectively arrive at the best solution, which most likely exists in the middle
Expand Down
6 changes: 6 additions & 0 deletions docs/docs/dev-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ This topic describes how to contribute to the Tableau Server Client (Python) pro
git clone git@github.com:<user-name>/server-client-python.git
```

1. Switch to the development branch

```shell
git checkout development
```

1. Run the tests to make sure everything is peachy:

```shell
Expand Down