forked from explosion/spaCy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Port over URL pattern changes from explosion#1411
- Loading branch information
Showing
2 changed files
with
12 additions
and
12 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 |
---|---|---|
|
@@ -33,13 +33,10 @@ | |
"http://userid:[email protected]/", | ||
"http://142.42.1.1/", | ||
"http://142.42.1.1:8080/", | ||
"http://⌘.ws", | ||
"http://⌘.ws/", | ||
"http://foo.com/blah_(wikipedia)#cite-1", | ||
"http://foo.com/blah_(wikipedia)_blah#cite-1", | ||
"http://foo.com/unicode_(✪)_in_parens", | ||
"http://foo.com/(something)?after=parens", | ||
"http://☺.damowmow.com/", | ||
"http://code.google.com/events/#&product=browser", | ||
"http://j.mp", | ||
"ftp://foo.bar/baz", | ||
|
@@ -49,14 +46,17 @@ | |
"http://a.b-c.de", | ||
"http://223.255.255.254", | ||
"http://a.b--c.de/", # this is a legit domain name see: https://gist.github.com/dperini/729294 comment on 9/9/2014 | ||
"http://✪df.ws/123", | ||
"http://➡.ws/䨹", | ||
"http://مثال.إختبار", | ||
"http://例子.测试", | ||
"http://उदाहरण.परीक्षा", | ||
|
||
pytest.mark.xfail("http://foo.com/blah_blah_(wikipedia)"), | ||
pytest.mark.xfail("http://foo.com/blah_blah_(wikipedia)_(again)"), | ||
pytest.mark.xfail("http://⌘.ws"), | ||
pytest.mark.xfail("http://⌘.ws/"), | ||
pytest.mark.xfail("http://☺.damowmow.com/"), | ||
pytest.mark.xfail("http://✪df.ws/123"), | ||
pytest.mark.xfail("http://➡.ws/䨹"), | ||
pytest.mark.xfail("http://مثال.إختبار"), | ||
pytest.mark.xfail("http://例子.测试"), | ||
pytest.mark.xfail("http://उदाहरण.परीक्षा"), | ||
] | ||
|
||
URLS_SHOULD_NOT_MATCH = [ | ||
|
@@ -83,7 +83,6 @@ | |
"http://foo.bar/foo(bar)baz quux", | ||
"ftps://foo.bar/", | ||
"http://-error-.invalid/", | ||
"http://-a.b.co", | ||
"http://a.b-.co", | ||
"http://0.0.0.0", | ||
"http://10.1.1.0", | ||
|
@@ -99,6 +98,7 @@ | |
pytest.mark.xfail("foo.com"), | ||
pytest.mark.xfail("http://1.1.1.1.1"), | ||
pytest.mark.xfail("http://www.foo.bar./"), | ||
pytest.mark.xfail("http://-a.b.co"), | ||
] | ||
|
||
|
||
|