Skip to content
Open
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
2 changes: 1 addition & 1 deletion examples/md-ipi/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ i-pi input.xml > i-pi.out &
sleep 5

# Start LOREM driver
i-pi-driver -a lorem -u -m lorem \
i-pi-driver-py -a lorem -u -m lorem \
-o model_path=${MODEL_PATH},template=start.xyz \
> driver.out &

Expand Down
1 change: 0 additions & 1 deletion examples/md-ipi/input.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
<trajectory filename='becx'>becx</trajectory>
<trajectory filename='becy'>becy</trajectory>
<trajectory filename='becz'>becz</trajectory>
<trajectory filename='dip' extra_type='dipole'> extras </trajectory>
<properties filename='properties.out' verbosity='low' > [ step, time, conserved, kinetic_md, potential, Efield, Eenvelope ] </properties>
</output>

Expand Down
2 changes: 1 addition & 1 deletion examples/md-ipi/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ echo "i-PI started"
sleep 5

# Start LOREM driver
i-pi-driver -a lorem -u -m lorem \
i-pi-driver-py -a lorem -u -m lorem \
-o model_path=${MODEL_PATH},template=start.xyz \
> driver.out &
echo "LOREM driver started"
Expand Down
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@ addopts = [
"--cov-report=",
"--import-mode=append",
]
filterwarnings = ["error"]
filterwarnings = [
"error",
"ignore:jax.core.get_opaque_trace_state is deprecated.:DeprecationWarning",
]

[tool.ruff]
exclude = ["src/lorem/_version.py"]
Expand Down