Skip to content

Commit

Permalink
Try to fix CI...
Browse files Browse the repository at this point in the history
  • Loading branch information
paugier committed Jan 25, 2024
1 parent 05fde86 commit 2af5731
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 4 deletions.
File renamed without changes.
File renamed without changes.
3 changes: 2 additions & 1 deletion .github/workflows/ci-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,9 @@ jobs:
- name: Run tests
run: |
cp .github/fluidfft-site.cfg $HOME/.fluidfft-site.cfg
cp .github/fluidfft-site-seq.cfg $HOME/.fluidfft-site.cfg
nox --session "tests(with_cov=True, with_mpi=False)"
cp .github/fluidfft-site-mpi.cfg $HOME/.fluidfft-site.cfg
nox --session "tests(with_cov=True, with_mpi=True)"
coverage xml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
use-mamba: true
- name: Install
run: |
cp .github/fluidfft-site-macos.cfg $HOME/.fluidfft-site.cfg
cp .github/fluidfft-site-seq.cfg $HOME/.fluidfft-site.cfg
pip install -e . -v --no-build-isolation --no-deps
- name: Tests
run: |
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def run_command(command, **kwargs):
if with_mpi:
if with_cov:
command = (
"mpirun -np 2 --oversubscribe coverage run -p -m pytest --exitfirst src"
"mpirun -np 2 --oversubscribe coverage run -p -m pytest -v -s --exitfirst src"
)

else:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ fluidfft-bench-analysis = "fluidfft.bench_analysis:run"
"fft3d.mpi_with_p3dfft" = "fluidfft.fft3d.mpi_with_p3dfft"

# should be in fluidfft-pfft
"fft3d.mpi_with_pfft" = "fluidfft.fft3d.mpi_with_pfft"
# "fft3d.mpi_with_pfft" = "fluidfft.fft3d.mpi_with_pfft"

# should be in fluidfft-mpi4pyfft (a pure Python package)
"fft3d.mpi_with_mpi4pyfft" = "fluidfft.fft3d.mpi_with_mpi4pyfft"
Expand Down

0 comments on commit 2af5731

Please sign in to comment.