Commit 0d16dcc1 authored by VIGNESHinZONE's avatar VIGNESHinZONE
Browse files

fixing errors

parent 2213a654
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -133,4 +133,4 @@ jobs:
    - name: PyTest
      if: ${{ (success() || failure()) && (steps.install.outcome == 'failure' || steps.install.outcome == 'success') }}
      shell: bash -l {0}
      run: pytest -v -m jax deepchem
      run: pytest -v -m 'jax and not slow' deepchem
+1 −1
Original line number Diff line number Diff line
@@ -145,7 +145,7 @@ jobs:
    - name: PyTest
      if: ${{ (success() || failure()) && (steps.install.outcome == 'failure' || steps.install.outcome == 'success') }}
      shell: bash -l {0}
      run: pytest -v -m "not slow and not jax and not torch" --cov=deepchem --cov-report=xml deepchem
      run: pytest -v -m "not slow and not jax and not torch and not tensorflow" --cov=deepchem --cov-report=xml deepchem
    - name: Upload coverage to Codecov
      if: ${{ (success() || failure()) && (steps.install.outcome == 'failure' || steps.install.outcome == 'success') }}
      uses: codecov/codecov-action@v1
+3 −3
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@ jobs:
    strategy:
      fail-fast: false
      matrix:
        python-version: [3.7]
        python-version: [3.7, 3.8]
    steps:
    - uses: actions/checkout@v2
    - name: Cache pip modules for Linux
@@ -39,7 +39,7 @@ jobs:
      fail-fast: false
      matrix:
        os: [ubuntu-latest, windows-latest]
        python-version: [3.7]
        python-version: [3.7, 3.8]
        include:
          - os: ubuntu-latest
            python-version: 3.6
@@ -133,4 +133,4 @@ jobs:
    - name: PyTest
      if: ${{ (success() || failure()) && (steps.install.outcome == 'failure' || steps.install.outcome == 'success') }}
      shell: bash -l {0}
      run: pytest -v -m tensorflow deepchem
      run: pytest -v -m 'tensorflow and not slow' deepchem
+1 −1
Original line number Diff line number Diff line
@@ -133,4 +133,4 @@ jobs:
    - name: PyTest
      if: ${{ (success() || failure()) && (steps.install.outcome == 'failure' || steps.install.outcome == 'success') }}
      shell: bash -l {0}
      run: pytest -v -m torch deepchem
      run: pytest -v -m 'torch and not slow' deepchem
+1 −1
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@ except:

class TestCallbacks(unittest.TestCase):

  @pytest.mark.tensorflow
  @pytest.mark.torch
  def test_validation(self):
    """Test ValidationCallback."""
    tasks, datasets, transformers = dc.molnet.load_clintox()
Loading