Skip to content

Commit

Permalink
rm initial.def
Browse files Browse the repository at this point in the history
  • Loading branch information
yomichi committed Aug 19, 2024
1 parent daa898d commit e82a72d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,5 +70,5 @@ jobs:
- name: ctest
working-directory: ${{runner.workspace}}/build
shell: bash
run: ctest -VV -R HeisenbergChain
run: ctest -VV -R '^HeisenbergChain$'
# run: ctest -VV -R HeisenbergChain
4 changes: 2 additions & 2 deletions test/python/runtest.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ def read_out(filename):

bin_to_test = os.path.join(rootdir, "..", "..", "src", "mVMC", "vmc.out")

#result = subprocess.call([bin_to_test, "-s", "%s/StdFace.def" % refdir])
result = subprocess.call([bin_to_test, "-s", "%s/StdFace.def" % refdir, "%s/initial.def" % refdir])
result = subprocess.call([bin_to_test, "-s", "%s/StdFace.def" % refdir])
# result = subprocess.call([bin_to_test, "-s", "%s/StdFace.def" % refdir, "%s/initial.def" % refdir])
if result != 0:
sys.exit(result)

Expand Down

0 comments on commit e82a72d

Please sign in to comment.