Skip to content

Commit

Permalink
asdf
Browse files Browse the repository at this point in the history
  • Loading branch information
loriab committed Oct 27, 2023
1 parent 247f760 commit 80af97e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 10 deletions.
13 changes: 4 additions & 9 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,8 @@ jobs:
# note: any activate/deactivate use the conda cmd. other cmds use mamba cmd.

- name: Special Config - NWChem
if: "(matrix.cfg.label == 'NWChem')"
if: false
#if: "(matrix.cfg.label == 'NWChem')"
run: |
sudo apt-get -y install nwchem
Expand All @@ -143,22 +144,16 @@ jobs:
run: |
qcore --accept-license
# note: psi4 on c-f pins to a single qcel and qcng, so this may be handy for solve-and-replace
#- name: Special Config - QCElemental Dep
# if: (matrix.cfg.label == 'ADCC')
# run: |
# conda remove qcelemental --force
# python -m pip install qcelemental>=0.26.0 --no-deps

- name: Special Config - QCElemental Dep
if: false
run: |
conda remove qcelemental --force
python -m pip install 'git+https://github.com/MolSSI/QCElemental.git@loriab-patch-2' --no-deps
# note: conda remove --force, not mamba remove --force b/c https://github.com/mamba-org/mamba/issues/412
# alt. is micromamba but not yet ready for setup-miniconda https://github.com/conda-incubator/setup-miniconda/issues/75
- name: Special Config - QCEngine Dep
if: "(matrix.cfg.label == 'Psi4-1.6') || (matrix.cfg.label == 'ADCC') || (matrix.cfg.label == 'optimization-dispersion')"
if: "(startsWith(matrix.cfg.label, 'Psi4')) || (matrix.cfg.label == 'ADCC') || (matrix.cfg.label == 'optimization-dispersion')"
run: |
conda remove qcengine --force
Expand Down
2 changes: 2 additions & 0 deletions devtools/conda-envs/nwchem.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ name: test
channels:
- conda-forge
dependencies:
- nwchem

# Core
- python
- pyyaml
Expand Down
2 changes: 1 addition & 1 deletion qcengine/programs/tests/test_canonical_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ def test_local_options_scratch(program, model, keywords):
"psi4": rf"Scratch directory: {scratch_directory}/tmp\w+_psi_scratch/",
}
if sys.platform.startswith("win"):
stdout_ref["psi4"] = rf"Scratch directory: {str(Path(scratch_directory))}"
stdout_ref["psi4"] = f"Scratch directory: {str(Path(scratch_directory))}"

# a scratch file (preferrably output) expected after job if scratch not cleaned up
scratch_sample = {
Expand Down

0 comments on commit 80af97e

Please sign in to comment.