-
Notifications
You must be signed in to change notification settings - Fork 280
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into ignore-malformed-urls
- Loading branch information
Showing
10 changed files
with
121 additions
and
47 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,95 @@ | ||
name: CI | ||
|
||
# Controls when the action will run. | ||
on: | ||
# Triggers the workflow on push or pull request events but only for the master branch | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
jobs: | ||
code-quality: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
toxenv: | ||
- black | ||
- flake8 | ||
- mypy | ||
- isort | ||
env: | ||
TOXENV: ${{ matrix.toxenv }} | ||
|
||
name: "Tox ${{ matrix.toxenv }}" | ||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: setup python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.9' | ||
|
||
- name: Install Requirements [${{ matrix.toxenv }}] | ||
run: pip install tox | ||
|
||
- name: Tox-${{ matrix.toxenv }} | ||
run: tox | ||
# This workflow contains a single job called "build" | ||
test: | ||
# The type of runner that the job will run on | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
toxenv: | ||
- py38 | ||
- py39 | ||
- py310 | ||
include: | ||
- toxenv: py38 | ||
python-version: '3.8' | ||
- toxenv: py39 | ||
python-version: '3.9' | ||
- toxenv: py310 | ||
python-version: '3.10' | ||
- toxenv: py311 | ||
python-version: '3.11' | ||
- toxenv: py312 | ||
python-version: '3.12' | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
TOXENV: ${{ matrix.toxenv }} | ||
name: "Python ${{ matrix.python-version }} | Tox ${{ matrix.toxenv }}" | ||
|
||
# Steps represent a sequence of tasks that will be executed as part of the job | ||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 2 | ||
|
||
- name: setup python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- name: Install Requirements [Python-${{ matrix.python-version }}] | ||
run: pip install tox | ||
|
||
- name: Tox-${{ matrix.toxenv }} | ||
run: tox | ||
|
||
- name: Upload coverage to Codecov | ||
# see https://github.com/codecov/codecov-action/blob/master/README.md | ||
uses: codecov/codecov-action@v2 | ||
with: | ||
flags: unittests-${{ matrix.python-version }} | ||
fail_ci_if_error: true # default = false | ||
os: toxenv | ||
verbose: true # default = false |
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 |
---|---|---|
|
@@ -6,6 +6,7 @@ dist | |
.idea | ||
.coverage | ||
.coverage.* | ||
coverage.xml | ||
env/ | ||
.c9/ | ||
.vscode | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import html2text | ||
|
||
# See https://github.com/Alir3z4/html2text/issues/163 for more information. | ||
|
||
|
||
def test_newline_on_multiple_calls(): | ||
h = html2text.HTML2Text() | ||
html = "<p>test</p>" | ||
md1 = h.handle(html) | ||
md2 = h.handle(html) | ||
md3 = h.handle(html) | ||
assert md1 == md2 == md3 |
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