Skip to content
Merged
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
19 changes: 19 additions & 0 deletions UsingTestPyPI.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Using TestPyPI to consume rc builds
The BotBuilder SDK rc build feed is found on [TestPyPI](https://test.pypi.org/).

The daily builds will be available soon through the mentioned feed as well.


# Configure TestPyPI

You can tell pip to download packages from TestPyPI instead of PyPI by specifying the --index-url flag (in the example below, replace 'botbuilder-core' for the name of the library you want to install)

```bash
$ pip install --index-url https://test.pypi.org/simple/ botbuilder-core
```
If you want to allow pip to also pull other packages from PyPI you can specify --extra-index-url to point to PyPI.
This is useful when the package you’re testing has dependencies:

```bash
pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ botbuilder-core
```