Skip to content

Commit

Permalink
#11 adding pytest to pixi start command
Browse files Browse the repository at this point in the history
  • Loading branch information
joshkamm committed Nov 6, 2024
1 parent 1e4cf5f commit cf0f67c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pixi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ platforms = ["linux-64", "linux-aarch64"]

[tasks]
clean = {cmd = "rm -rf build", description = "Delete build directory"}
build = {cmd = "cmake --build build -j 16", description = "Invoke cmake to compile and link the executable"}
build = {cmd = "cmake --build build -j 32", description = "Invoke cmake to compile and link the executable"}
start-linux-64 = {depends-on = ["configure-linux-64", "build", "test"]}

[tasks.start-athena]
description = "Configure, build, and test on the Zimmerman group cluster"
cmd = "echo 'Finished pixi start-athena!'"
depends-on = ["configure-athena", "build", "test"]
depends-on = ["configure-athena", "build", "pytest"]

[tasks.test]
description = "Test SlaterGPU executable on a small molecular system"
Expand Down

0 comments on commit cf0f67c

Please sign in to comment.