Files
pipenv/tests
Jeff Tratner 133417a941 Remove extraneous is_vcs calls
1. is_vcs requires (req.path or req.uri) to be truthy.
2. (req.path or req.uri) would be true in first if statement

Thus if you have:

```
if (req.uri or req.path or ...) and not req.vcs
elif req.vcs or is_vcs(req.path)
```

if `is_vcs(req.path)` is Truthy, then the first if clause must be
truthy, so it's unnecessary.

Also add a quick test to confirm that originating purpose for that check
is now handled otherwise.
2018-03-29 09:32:04 -04:00
..
2018-03-06 08:50:04 -05:00
2018-03-27 13:42:27 -04:00
2017-02-02 16:57:14 -07:00
2018-03-27 15:30:22 -04:00
2018-03-29 09:32:04 -04:00