Skip to content

Commit

Permalink
win
Browse files Browse the repository at this point in the history
  • Loading branch information
loriab committed May 7, 2024
1 parent 21b22e1 commit 1068798
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 13 deletions.
12 changes: 0 additions & 12 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,18 +171,6 @@ jobs:
pip install git+https://github.com/MolSSI/QCEngineRecords.git@${QCER_VER}#egg=qcenginerecords
python -c "import qcengine; print(qcengine.config.global_repr())"
- name: Configure QCEngine
if: false
run: |
cat > qcengine.yaml <<EOF
all:
hostname_pattern: "*"
memory: 2
ncores: 2
EOF
cat qcengine.yaml
qcengine info
- name: PyTest
run: |
pytest -rws -v ${{ matrix.cfg.pytest }} \
Expand Down
11 changes: 10 additions & 1 deletion qcengine/programs/tests/test_ghost.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,16 @@ def test_tricky_ghost(driver, qcprog, subject, basis, keywords):
res = qcng.compute(atin, qcprog, raise_error=True)
pytest.xfail("no ghosts with gamess")

atres = qcng.compute(atin, qcprog, task_config={"memory": 2.2})
config = qcng.config.get_config(
hostname="something",
task_config={
"ncores": 1,
"nnodes": 1,
"memory": 2.2,
},
)

atres = qcng.compute(atin, qcprog, task_config=config.dict())
pprint.pprint(atres.dict(), width=200)

assert compare_values(
Expand Down

0 comments on commit 1068798

Please sign in to comment.