Skip to content

Commit

Permalink
Remove test against cat1 that will always fail
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdbeek committed Dec 14, 2023
1 parent a5983e9 commit bfcea2b
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 32 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/pulsar.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,6 @@ jobs:
python: 3.11
- tox-env: py311-test-unit
python: 3.11
- tox-env: py39-install_wheel-no_conda
python: 3.9
- tox-env: py37-install_wheel
python: 3.7
services:
Expand Down
5 changes: 1 addition & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -84,14 +84,11 @@ tests:
$(IN_VENV) nosetests $(NOSE_TESTS)

test-install-pypi:
bash install_test/test_install.bash
bash install_test/test_install_conda.bash

test-install-wheel: dist
PULSAR_INSTALL_TARGET=$(wildcard $(shell pwd)/dist/pulsar_app*.whl)[web] bash install_test/test_install_conda.bash

test-install-wheel-no-conda: dist
PULSAR_INSTALL_TARGET=$(wildcard $(shell pwd)/dist/pulsar_app*.whl)[web] bash install_test/test_install.bash

coverage:
coverage run --source $(SOURCE_DIR) setup.py $(TEST_DIR)
coverage report -m
Expand Down
23 changes: 0 additions & 23 deletions install_test/test_install.bash

This file was deleted.

5 changes: 2 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = lint, docs, dist, test-unit, test, install_wheel, install_wheel-no_conda
envlist = lint, docs, dist, test-unit, test, install_wheel
toxworkdir={env:TOX_WORK_DIR:.tox}
source_dir = pulsar
test_dir = test
Expand All @@ -11,8 +11,7 @@ commands =
lint: flake8 --ignore W504 {[tox]source_dir} {[tox]test_dir}
dist: make lint-dist
docs: make lint-docs
install_wheel-!no_conda: make test-install-wheel
install_wheel-no_conda: make test-install-wheel-no-conda
install_wheel: make test-install-wheel
mypy: mypy {[tox]source_dir} {[tox]test_dir}

deps =
Expand Down

0 comments on commit bfcea2b

Please sign in to comment.