Skip to content

Commit ad52cf3

Browse files
authored
Merge pull request #146 from NREL/fix_package_issue
asdf
2 parents 6ee4061 + 49f753a commit ad52cf3

2 files changed

Lines changed: 6 additions & 8 deletions

File tree

.github/workflows/pull_request_tests.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,9 @@ jobs:
77
runs-on: ${{ matrix.os }}
88
strategy:
99
matrix:
10-
os: [ubuntu-latest]
11-
#os: [ubuntu-latest, macos-latest]
10+
os: [ubuntu-latest, macos-latest]
1211
#os: [ubuntu-latest, macos-latest, windows-latest]
13-
python-version: ["3.9"] #["3.9", "3.10", "3.11"]
12+
python-version: ["3.9", "3.10", "3.11"]
1413

1514
steps:
1615
- uses: actions/checkout@v2

src/pydss/reports/__init__.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
from . import *
2-
# import pkgutil
1+
import pkgutil
32

43

5-
# __path__ = pkgutil.extend_path(__path__, __name__)
4+
__path__ = pkgutil.extend_path(__path__, __name__)
65

7-
# for _, modname, _ in pkgutil.walk_packages(path=__path__, prefix=__name__ + '.'):
8-
# __import__(modname)
6+
for _, modname, _ in pkgutil.walk_packages(path=__path__, prefix=__name__ + '.'):
7+
__import__(modname)

0 commit comments

Comments
 (0)