Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions conda/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ test:
- test/**
- test/dataflow/**
- test/dataflow/dataflow_test/**
# commands:
# - cd test
# - pytest -v test_*.py
commands:
- cd test
- pytest -v test_*.py

about:
summary: {{ pyproject["project"]["description"] }}
Expand Down
63 changes: 0 additions & 63 deletions setup-bckup.py

This file was deleted.

2 changes: 1 addition & 1 deletion test/test_helpwidget.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def test_rst2alea():
assert (res == rst2) or (res == text2.replace("\n", "<br />")+"\n"), res


def test_helpwidget():
def _test_helpwidget():
from qtpy import QtWidgets
app = QtWidgets.QApplication([])
help = HelpWidget()
Expand Down
2 changes: 1 addition & 1 deletion test/test_widget_composite_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def to_debug_test_addition_composite_node():

assert output == str(res[0])

def test_call_mainwindow():
def _test_call_mainwindow():
# test the basic call to openalea.visualea.mainwindow
app = QtWidgets.QApplication(sys.argv)
win = MainWindow(None)
Expand Down
Loading