Skip to content

Commit bdb2bdf

Browse files
authored
Merge pull request #78 from dimagi/dm/fix-docs-build
Add .readthedocs.yml configuration and tweak test option
2 parents 13feb1f + 790b9c1 commit bdb2bdf

2 files changed

Lines changed: 16 additions & 0 deletions

File tree

.github/workflows/tests.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,10 @@ jobs:
4242
needs: [configure]
4343
runs-on: ubuntu-22.04
4444
strategy:
45+
# coveralls frequently fails with 500 errors, retrying usually helps.
46+
# The default fail-fast=true would stop the running jobs on the first
47+
# failure, which can make it harder to get all jobs passing.
48+
fail-fast: false
4549
matrix:
4650
python: ${{ fromJSON(needs.configure.outputs.python_versions) }}
4751
django: ${{ fromJSON(needs.configure.outputs.django_versions) }}

.readthedocs.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Read the Docs configuration file for Sphinx projects
2+
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
3+
4+
version: 2
5+
6+
build:
7+
os: ubuntu-lts-latest
8+
tools:
9+
python: "3.13"
10+
11+
sphinx:
12+
configuration: docs/conf.py

0 commit comments

Comments
 (0)