-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: add table case * feat: add table case * feat: add table case * feat: add table case * feat: add table case * feat: add table case * feat: add table case * feat: add table case * feat: add table case * feat: add table case * feat: add table case * feat: add table case * feat: add table case * feat: add table case * feat: add table case * feat: add table case * feat: add table case * feat: add table case * feat: add table case * feat: add table case * feat: add table case * feat: add table case * feat: add table case * feat: add table case * feat: add table case * feat: add table case * feat: add table case * feat: add table case * feat: add table case * feat: add table case * feat: add table case * feat: add table case * feat: add table case * feat: add table case * feat: add table case * feat: add table case * feat: add table case * feat: add table case * feat: add table case * feat: add table case * feat: add table case * feat: add table case * feat: add table case * feat: add table case * feat: add table case * feat: add table case * feat: add table case --------- Co-authored-by: quyuan <[email protected]>
- Loading branch information
Showing
17 changed files
with
288 additions
and
160 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 |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | ||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python | ||
|
||
name: mineru | ||
on: | ||
schedule: | ||
- cron: '0 22 * * *' # 每天晚上 10 点执行 | ||
jobs: | ||
cli-test: | ||
runs-on: pdf | ||
timeout-minutes: 240 | ||
strategy: | ||
fail-fast: true | ||
|
||
steps: | ||
- name: PDF cli | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 2 | ||
|
||
- name: install&test | ||
run: | | ||
source activate mineru | ||
conda env list | ||
pip show coverage | ||
# cd $GITHUB_WORKSPACE && sh tests/retry_env.sh | ||
cd $GITHUB_WORKSPACE && python tests/clean_coverage.py | ||
cd $GITHUB_WORKSPACE && coverage run -m pytest tests/unittest/ --cov=magic_pdf/ --cov-report html --cov-report term-missing | ||
cd $GITHUB_WORKSPACE && python tests/get_coverage.py | ||
cd $GITHUB_WORKSPACE && pytest -s -v tests/test_cli/test_cli_sdk.py | ||
notify_to_feishu: | ||
if: ${{ always() && !cancelled() && contains(needs.*.result, 'failure') && (github.ref_name == 'master') }} | ||
needs: cli-test | ||
runs-on: pdf | ||
steps: | ||
- name: get_actor | ||
run: | | ||
metion_list="dt-yy" | ||
echo $GITHUB_ACTOR | ||
if [[ $GITHUB_ACTOR == "drunkpig" ]]; then | ||
metion_list="xuchao" | ||
elif [[ $GITHUB_ACTOR == "myhloli" ]]; then | ||
metion_list="zhaoxiaomeng" | ||
elif [[ $GITHUB_ACTOR == "icecraft" ]]; then | ||
metion_list="xurui1" | ||
fi | ||
echo $metion_list | ||
echo "METIONS=$metion_list" >> "$GITHUB_ENV" | ||
echo ${{ env.METIONS }} | ||
- name: notify | ||
run: | | ||
echo ${{ secrets.USER_ID }} | ||
curl -X POST -H "Content-Type: application/json" -d '{"msg_type":"post","content":{"post":{"zh_cn":{"title":"'${{ github.repository }}' GitHubAction Failed","content":[[{"tag":"text","text":""},{"tag":"a","text":"Please click here for details ","href":"https://github.com/'${{ github.repository }}'/actions/runs/'${GITHUB_RUN_ID}'"},{"tag":"at","user_id":"'${{ secrets.USER_ID }}'"}]]}}}}' ${{ secrets.WEBHOOK_URL }} |
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,61 @@ | ||
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | ||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python | ||
|
||
name: mineru | ||
on: | ||
push: | ||
branches: | ||
- "master" | ||
- "dev" | ||
paths-ignore: | ||
- "cmds/**" | ||
- "**.md" | ||
workflow_dispatch: | ||
jobs: | ||
cli-test: | ||
runs-on: pdf | ||
timeout-minutes: 240 | ||
strategy: | ||
fail-fast: true | ||
|
||
steps: | ||
- name: PDF cli | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 2 | ||
|
||
- name: install&test | ||
run: | | ||
source activate mineru | ||
conda env list | ||
pip show coverage | ||
# cd $GITHUB_WORKSPACE && sh tests/retry_env.sh | ||
cd $GITHUB_WORKSPACE && python tests/clean_coverage.py | ||
cd $GITHUB_WORKSPACE && coverage run -m pytest tests/unittest/ --cov=magic_pdf/ --cov-report html --cov-report term-missing | ||
cd $GITHUB_WORKSPACE && python tests/get_coverage.py | ||
cd $GITHUB_WORKSPACE && pytest -s -v tests/test_cli/test_cli_sdk.py | ||
notify_to_feishu: | ||
if: ${{ always() && !cancelled() && contains(needs.*.result, 'failure') && (github.ref_name == 'master') }} | ||
needs: cli-test | ||
runs-on: pdf | ||
steps: | ||
- name: get_actor | ||
run: | | ||
metion_list="dt-yy" | ||
echo $GITHUB_ACTOR | ||
if [[ $GITHUB_ACTOR == "drunkpig" ]]; then | ||
metion_list="xuchao" | ||
elif [[ $GITHUB_ACTOR == "myhloli" ]]; then | ||
metion_list="zhaoxiaomeng" | ||
elif [[ $GITHUB_ACTOR == "icecraft" ]]; then | ||
metion_list="xurui1" | ||
fi | ||
echo $metion_list | ||
echo "METIONS=$metion_list" >> "$GITHUB_ENV" | ||
echo ${{ env.METIONS }} | ||
- name: notify | ||
run: | | ||
echo ${{ secrets.USER_ID }} | ||
curl -X POST -H "Content-Type: application/json" -d '{"msg_type":"post","content":{"post":{"zh_cn":{"title":"'${{ github.repository }}' GitHubAction Failed","content":[[{"tag":"text","text":""},{"tag":"a","text":"Please click here for details ","href":"https://github.com/'${{ github.repository }}'/actions/runs/'${GITHUB_RUN_ID}'"},{"tag":"at","user_id":"'${{ secrets.USER_ID }}'"}]]}}}}' ${{ secrets.WEBHOOK_URL }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,4 +16,5 @@ pypandoc | |
pyopenssl==24.0.0 | ||
struct-eqtable==0.1.0 | ||
pytest-cov | ||
beautifulsoup4 | ||
beautifulsoup4 | ||
coverage |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import pytest | ||
import torch | ||
|
||
def clear_gpu_memory(): | ||
''' | ||
clear GPU memory | ||
''' | ||
torch.cuda.empty_cache() | ||
print("GPU memory cleared.") | ||
|
||
@pytest.hookimpl(tryfirst=True, hookwrapper=True) | ||
def pytest_runtest_teardown(item, nextitem): | ||
''' | ||
clear GPU memory after each test | ||
''' | ||
yield | ||
clear_gpu_memory() |
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
File renamed without changes.
Oops, something went wrong.