forked from hhursev/recipe-scrapers
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Feature/readme cleanup (#1) * cleaning up readme * removing coverage * adding support for python 2.7 (#2) * adding run_tester to ingnore * rm * adding back test file * Feature/budget bytes (#3) * adding budgetbytes class * getting the basics working * updating ignore * some updates * better support for recipe miner * cleaing up setup * upadting git ingore * upadting git ingore * updating version * Feature/doc clean up (#4) * adding utf-8 * adding data fetcher * updating abstract * Feature/doc clean up (#5) * adding utf-8 * adding data fetcher * updating abstract * removing some sites I don't use
- Loading branch information
Showing
57 changed files
with
201 additions
and
689 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,5 +1,8 @@ | ||
*.pyc | ||
*.egg-info | ||
.coverage | ||
/.idea | ||
|
||
recipe_scrapers/tests/test_data/*.html | ||
build/* | ||
dist/* |
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 |
---|---|---|
@@ -1,20 +1,14 @@ | ||
language: python | ||
|
||
python: | ||
- "2.7" | ||
- "3.2" | ||
- "3.3" | ||
- "3.4" | ||
- "3.5" | ||
|
||
install: | ||
- pip install beautifulsoup4==4.4.0 coverage==3.7.1 coveralls | ||
|
||
before_script: | ||
- curl -L -o test_data.zip https://www.dropbox.com/sh/wkxm933pae6q0e6/AAAXSinoeSn1-fz5Fz_LHhM6a?dl=1 | ||
- unzip test_data.zip -d recipe_scrapers/tests/test_data || true | ||
- pip install beautifulsoup4==4.4.0 | ||
|
||
script: | ||
- coverage run tests.py | ||
|
||
after_success: | ||
- coveralls | ||
- python tests.py |
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
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
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.