Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove oe license check #220

Merged
merged 2 commits into from
Aug 2, 2022
Merged
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
12 changes: 1 addition & 11 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,6 @@ jobs:
name: Test on ${{ matrix.os }}, Python ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}

env:
OE_LICENSE: ${{ github.workspace }}/oe_license.txt

strategy:
fail-fast: false
matrix:
Expand All @@ -39,19 +36,12 @@ jobs:
environment-file: devtools/conda-envs/test_env.yaml
mamba-version: "*"
channel-priority: true
channels: jaimergp/label/unsupported-cudatoolkit-shim,conda-forge,openeye,defaults
channels: jaimergp/label/unsupported-cudatoolkit-shim,conda-forge,defaults
activate-environment: test
auto-update-conda: true
auto-activate-base: false
show-channel-urls: true

- name: License OpenEye
shell: bash -l {0}
run: |
echo "${SECRET_OE_LICENSE}" > ${OE_LICENSE}
python -c "from openeye import oechem; assert oechem.OEChemIsLicensed()"
env:
SECRET_OE_LICENSE: ${{ secrets.OE_LICENSE }}

- name: Install Package
shell: bash -l {0}
Expand Down
4 changes: 0 additions & 4 deletions devtools/conda-envs/test_env.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ name: test

channels:
- conda-forge
- openeye
- dglteam # espaloma; TODO: Remove this once espaloma is fully on conda-forge
- defaults

Expand Down Expand Up @@ -32,9 +31,6 @@ dependencies:
- openff-toolkit >=0.7.1
- openff-forcefields >=1.2.0

# OpenEye toolkits are only used to speed up testing; they are not required for use
- openeye-toolkits

# Validating URLs
- validators

Expand Down