convert HTML + print exporters from DOMExporter to string concatenation #229
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
name: CI | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
pull_request: | |
branches: | |
- main | |
- develop | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: {} | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.13" | |
- name: Install dependencies | |
run: | | |
pip install pip --upgrade | |
if grep version pyproject.toml | grep -q "dev"; | |
then pip install https://github.com/fiduswriter/fiduswriter/archive/develop.zip; | |
else pip install https://github.com/fiduswriter/fiduswriter/archive/main.zip; | |
fi | |
- uses: pre-commit/[email protected] | |
test: | |
name: Run tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.13" | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
- name: Install Python dependencies | |
run: | | |
pip install wheel | |
pip install pip --upgrade | |
if grep version pyproject.toml | grep -q "dev"; | |
then pip install https://github.com/fiduswriter/fiduswriter/archive/develop.zip; | |
else pip install https://github.com/fiduswriter/fiduswriter/archive/main.zip; | |
fi | |
cd fiduswriter | |
cp ../ci/configuration.py ./ | |
cp ../ci/.coveragerc ./ | |
pip install requests[security] | |
pip install coverage | |
pip install coveralls | |
pip install packaging | |
pip install webdriver-manager | |
pip install selenium | |
pip install flake8 | |
pip install black | |
coverage run $(which fiduswriter) setup --no-static | |
- name: Run tests | |
uses: nick-invision/retry@v3 | |
with: | |
timeout_minutes: 8 | |
max_attempts: 3 | |
retry_on: error | |
command: | | |
cd fiduswriter | |
coverage run $(which fiduswriter) test book | |
- name: Upload failed test screenshots | |
if: ${{ failure() }} | |
uses: actions/[email protected] | |
with: | |
name: failure-artifacts | |
path: ${{ github.workspace }}/fiduswriter/screenshots/ | |
- name: Coveralls | |
run: | | |
cd fiduswriter | |
coveralls --service=github | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |