Skip to content

Commit 2a5ed39

Browse files
committed
Merge branch 'main' into atolopko/2535-fix-embedding-selection
2 parents 37e5e40 + 06da05e commit 2a5ed39

File tree

2 files changed

+31
-29
lines changed

2 files changed

+31
-29
lines changed

.github/workflows/push_tests.yml

Lines changed: 30 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -102,32 +102,33 @@ jobs:
102102
cd client && make smoke-test
103103
./node_modules/codecov/bin/codecov --yml=../.codecov.yml --root=../ --gcov-root=../ -C -F frontend,javascript,smokeTest
104104
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

test/unit/common/test_api.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,7 @@ def test_colors(self):
290290
result_data = result.json()
291291
self.assertEqual(result_data, pbmc3k_colors)
292292

293+
@unittest.skip('needs fix: https://github.com/chanzuckerberg/cellxgene/issues/2542')
293294
def test_static(self):
294295
endpoint = "static"
295296
file = "assets/favicon.ico"

0 commit comments

Comments
 (0)