-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #147 from Brenne/fix/credentials
Fixes #146 credentials of index-url parameter end up in stdout
- Loading branch information
Showing
2 changed files
with
5 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -136,9 +136,12 @@ class CliUtilsTest extends Specification { | |
'something else' | 'something else' | ||
'-m pip no urls' | '-m pip no urls' | ||
'-m pip something --extra-index-url http://some-url.com' | '-m pip something --extra-index-url http://some-url.com' | ||
'-m pip something --index-url http://some-url.com' | '-m pip something --index-url http://some-url.com' | ||
'-m pip something --extra-index-url http://user:[email protected]' | '-m pip something --extra-index-url http://user:*****@some-url.com' | ||
'-m pip something --index-url http://user:[email protected]' | '-m pip something --index-url http://user:*****@some-url.com' | ||
'-m pip something --extra-index-url http://user:[email protected]' | '-m pip something --extra-index-url http://user:*****@some-url.com' | ||
'-m pip something --extra-index-url http://user:[email protected] --extra-index-url http://user2:[email protected]' | '-m pip something --extra-index-url http://user:*****@some-url.com --extra-index-url http://user2:*****@another-url.com' | ||
'-m pip something --index-url http://user:[email protected] --extra-index-url http://user2:[email protected]' | '-m pip something --index-url http://user:*****@some-url.com --extra-index-url http://user2:*****@another-url.com' | ||
'-m pip something --extra-index-url https://user:[email protected]' | '-m pip something --extra-index-url https://user:*****@some-url.com' | ||
'-m pip something --extra-index-url http://user:[email protected] something else' | '-m pip something --extra-index-url http://user:*****@some-url.com something else' | ||
'-m pip --extra-index-url http://user:[email protected] something --extra-index-url http://user2:[email protected] end' | '-m pip --extra-index-url http://user:*****@some-url.com something --extra-index-url http://user2:*****@another-url.com end' | ||
|