forked from p12tic/cppreference-doc
-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master'
* upstream/master: test: Add travis config file Preprocess: Display table row separators via extra lines Preprocess: Remove invisible elements Preprocess: Convert CSS font-size values to pt Preprocess: Workaround bad formatting by using non-zero width Preprocess: Make remove_display_property_if_needed() more generic Preprocess: Convert subsequent inline block elements to tables Preprocess: Update cssless tests Preprocess: Fix span to table conversion when tr children have style Add tests for convert_span_tables_to_tr_td() Preprocess: Convert span tables to html tables Preprocess: extract file operations from preprocess_html_merge_cssless()
- Loading branch information
Showing
9 changed files
with
2,999 additions
and
306 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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Travis CI configuration file | ||
# http://about.travis-ci.org/docs/ | ||
dist: trusty | ||
|
||
language: python | ||
|
||
# Available Python versions: | ||
# http://about.travis-ci.org/docs/user/ci-environment/#Python-VM-images | ||
python: | ||
- "3.5" | ||
- "3.6" | ||
|
||
# Dependencies installation commands | ||
install: | ||
- pip install -U pip | ||
- pip install -r requirements.txt | ||
|
||
#before_script: | ||
# - "if [[ $TRAVIS_PYTHON_VERSION != 2.6 ]]; then flake8 --config=config/flake8rc asm_collect.py asmtest tests; fi" | ||
# - "if [[ $TRAVIS_PYTHON_VERSION != 2.6 ]]; then pylint --rcfile=config/pylintrc asm_collect.py asmtest tests; fi" | ||
|
||
script: | ||
- "python -m unittest discover" | ||
|
||
notifications: | ||
email: false | ||
|
||
sudo: false | ||
branches: | ||
only: | ||
- master | ||
git: | ||
depth: 300 |
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
Oops, something went wrong.