Skip to content

Commit 64cc794

Browse files
zingaleyut23
andauthored
move modules into pyro2 to allow for packaging (#115)
Co-authored-by: Eric Johnson <yut23@users.noreply.github.com> Co-authored-by: yut23 <yut23@gvljohnsons.com>
1 parent 8426a0d commit 64cc794

File tree

364 files changed

+5901
-6503
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

364 files changed

+5901
-6503
lines changed

.github/workflows/flake8.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ jobs:
4141
run: python setup.py install --user
4242

4343
- name: Run flake8
44-
run: flake8 .
44+
run: flake8 pyro

.github/workflows/isort.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,5 @@ jobs:
4141
run: python setup.py install --user
4242

4343
- name: Validate
44-
run: isort -c .
44+
run: isort -c pyro
4545

.github/workflows/pylint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,5 @@ jobs:
4141
run: python setup.py install --user
4242

4343
- name: Validate
44-
run: pylint --errors-only pyro.py ./advection ./advection_fv4 ./advection_nonuniform ./advection_rk ./advection_weno ./analysis ./compressible ./compressible_fv4 ./compressible_react ./compressible_rk ./compressible_sdc ./compressible_sr ./diffusion ./incompressible ./lm_atm ./mesh ./multigrid ./particles ./swe ./util
44+
run: pylint --errors-only pyro pyro/analysis
4545

.github/workflows/pytest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,4 @@ jobs:
4444
run: python setup.py install --user
4545

4646
- name: Run tests with pytest
47-
run: PYTHONPATH=$GITHUB_WORKSPACE pytest -v --cov=. --cov-config .coveragerc --nbval --ignore=docs --ignore=./multigrid/variable_coeff_elliptic.ipynb --ignore=examples/mesh --ignore=examples/multigrid --ignore=presentations
47+
run: pytest -v --cov=. --cov-config .coveragerc --nbval --ignore=docs --ignore=./pyro/multigrid/variable_coeff_elliptic.ipynb --ignore=examples/mesh --ignore=examples/multigrid --ignore=presentations

.github/workflows/regtest.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,7 @@ jobs:
4444
run: python setup.py install --user
4545

4646
- name: Run tests via test.py
47-
run: PYTHONPATH=$GITHUB_WORKSPACE ./test.py
47+
run: |
48+
cd pyro
49+
./test.py
4850

.gitignore

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,9 @@ inputs.auto
1919

2020
.pytest_cache/
2121

22-
__pycache__/
22+
__pycache__/
23+
24+
25+
pyro/_version.py
26+
pyro.egg-info/
27+
.eggs/

0 commit comments

Comments
 (0)