-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Python deps are too complicated Refs #826
- Loading branch information
Showing
7 changed files
with
705 additions
and
89 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,6 +38,9 @@ jobs: | |
# In many cases you can simplify this from what is generated here. | ||
# 'See docs on artifact collection here https://circleci.com/docs/2.0/artifacts/' | ||
- run: mkdir -p $CIRCLE_ARTIFACTS $CIRCLE_TEST_REPORTS | ||
- run: curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash - | ||
- run: sudo apt-get install -y nodejs | ||
- run: sudo npm install -g [email protected] | ||
# Dependencies | ||
# This would typically go in either a build or a build-and-test job when using workflows | ||
# Restore the dependency cache | ||
|
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/usr/bin/env node | ||
|
||
const planer = require('planer') | ||
const jsdom = require('jsdom') | ||
const dom = new jsdom.JSDOM().window.document | ||
console.log(planer.extractFrom(process.argv[2], 'text/html', dom)) |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
d380276
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Well done for pursuing this. This stuff is all horrid of course!