Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 2 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ jobs:
with:
submodules: false
coverage: codecov
toxdeps: tox-pypi-filter
posargs: -n auto
libraries: |
apt:
- libopenjp2-7
Expand All @@ -37,8 +35,6 @@ jobs:
with:
submodules: false
coverage: codecov
toxdeps: tox-pypi-filter
posargs: -n auto
libraries: |
apt:
- libopenjp2-7
Expand All @@ -48,16 +44,15 @@ jobs:
- macos: py38
- windows: py39
online:
needs: [core]
needs: [test]
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@main
with:
default_python: '3.8'
submodules: false
coverage: codecov
toxdeps: tox-pypi-filter
libraries: |
apt:
- libopenjp2-7
envs: |
- linux: py39-online
- linux: build_docs
publish:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -135,3 +135,4 @@ dmypy.json
# Verison file is created at install, not to be commited.
version.py
docs/api/
.DS_Store
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ extras =
docs
commands =
pip freeze --all --no-input
sphinx-build -j auto --color -W --keep-going -b html -d _build/.doctrees . _build/html {posargs}
sphinx-build -j auto --color -W --keep-going -b html -d _build/.doctrees . _build/html
python -c 'import pathlib; print("Documentation available under file://\{0\}".format(pathlib.Path(r"{toxinidir}") / "docs" / "_build" / "index.html"))'

[testenv:codestyle]
Expand Down