@@ -102,32 +102,33 @@ jobs:
102
102
cd client && make smoke-test
103
103
./node_modules/codecov/bin/codecov --yml=../.codecov.yml --root=../ --gcov-root=../ -C -F frontend,javascript,smokeTest
104
104
105
- smoke-tests-annotations :
106
- runs-on : ubuntu-latest
107
- timeout-minutes : 20
108
- steps :
109
- - uses : actions/checkout@v2
110
- - name : Set up Python 3.7
111
- uses : actions/setup-python@v1
112
- with :
113
- python-version : 3.7
114
- - name : Python cache
115
- uses : actions/cache@v1
116
- with :
117
- path : ~/.cache/pip
118
- key : ${{ runner.os }}-pip-${{ hashFiles('**/requirements*.txt') }}
119
- restore-keys : |
120
- ${{ runner.os }}-pip-
121
- - name : Node cache
122
- uses : actions/cache@v1
123
- with :
124
- path : ~/.npm
125
- key : ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
126
- restore-keys : |
127
- ${{ runner.os }}-node-
128
- - name : Install dependencies
129
- run : make pydist install-dist
130
- - name : Smoke tests (with annotations feature)
131
- run : |
132
- cd client && make smoke-test-annotations
133
- ./node_modules/codecov/bin/codecov --yml=../.codecov.yml --root=../ --gcov-root=../ -C -F frontend,javascript,smokeTestAnnotations
105
+ # TODO: reinstate: https://github.com/chanzuckerberg/cellxgene/issues/2544
106
+ # smoke-tests-annotations:
107
+ # runs-on: ubuntu-latest
108
+ # timeout-minutes: 20
109
+ # steps:
110
+ # - uses: actions/checkout@v2
111
+ # - name: Set up Python 3.7
112
+ # uses: actions/setup-python@v1
113
+ # with:
114
+ # python-version: 3.7
115
+ # - name: Python cache
116
+ # uses: actions/cache@v1
117
+ # with:
118
+ # path: ~/.cache/pip
119
+ # key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements*.txt') }}
120
+ # restore-keys: |
121
+ # ${{ runner.os }}-pip-
122
+ # - name: Node cache
123
+ # uses: actions/cache@v1
124
+ # with:
125
+ # path: ~/.npm
126
+ # key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
127
+ # restore-keys: |
128
+ # ${{ runner.os }}-node-
129
+ # - name: Install dependencies
130
+ # run: make pydist install-dist
131
+ # - name: Smoke tests (with annotations feature)
132
+ # run: |
133
+ # cd client && make smoke-test-annotations
134
+ # ./node_modules/codecov/bin/codecov --yml=../.codecov.yml --root=../ --gcov-root=../ -C -F frontend,javascript,smokeTestAnnotations
0 commit comments