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
4 changes: 2 additions & 2 deletions .github/workflows/build_test_pip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
- name: Test with pytest
run: |
git clone https://github.com/gammapy/gammapy-data.git $GAMMAPY_DATA
pip install -e .
pip install -e ".[tests]"
pytest -vv --cov=gammapy_plugin --cov-report=xml --cov-report=term
env:
NUMBA_DISABLE_JIT: 0
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
- name: Test with pytest
run: |
git clone https://github.com/gammapy/gammapy-data.git $GAMMAPY_DATA
pip install -e .
pip install -e ".[tests]"
pytest -vv --cov=gammapy_plugin --cov-report=xml --cov-report=term
env:
NUMBA_DISABLE_JIT: 0
Expand Down
319 changes: 0 additions & 319 deletions gammapy_plugin/models.py

This file was deleted.

8 changes: 8 additions & 0 deletions gammapy_plugin/models/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
from .spatial import PointSourceModelConverted, SpatialModelConverted
from .spectral import SpectralModelConverted

__all__ = [
"SpectralModelConverted",
"PointSourceModelConverted",
"SpatialModelConverted",
]
Loading
Loading