Skip to content

Commit

Permalink
bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminpkane committed Jan 17, 2022
1 parent f5eb59c commit ed48adc
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 13 deletions.
4 changes: 1 addition & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
IMAGENAME=fiftyone

.PHONY: app python docker docker-export

.DEFAULT_GOAL := docker-export
Expand All @@ -14,4 +12,4 @@ docker: python
@docker build -t voxel51/fiftyone .

docker-export: docker
@docker save ${IMAGENAME}:latest | gzip > ${IMAGENAME}.tar.gz
@docker save voxel51/fiftyone:latest | gzip > fiftyone.tar.gz
10 changes: 0 additions & 10 deletions tests/session_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,6 @@ def _run_helper(*args):
)


def test_fast_shutdown(capsys):
out = _run_helper()
assert fos._WAIT_INSTRUCTIONS in out


def test_fast_shutdown_remote(capsys):
out = _run_helper("--remote")
assert fos._WAIT_INSTRUCTIONS in out


def test_slow_shutdown(capsys):
out = _run_helper("--slow")
assert fos._WAIT_INSTRUCTIONS not in out

0 comments on commit ed48adc

Please sign in to comment.