You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 30, 2023. It is now read-only.
When running the tests, the entire test suite reports failure if a single test fails because an external dep (clustalw, mafft, uclust, etc) is not installed. Individual tests should first check if the required app is found, and only then execute. Otherwise, that specific test should be skipped.
The text was updated successfully, but these errors were encountered:
Python is not yet my thing, but this was passed on to me by another member of the Fink team. Maybe it's helpful:
py27's unittest is available on py26 using unittest2-py26. Using it requires "import unittest2 as unittest"
http://www.voidspace.org.uk/python/articles/unittest2.shtml#test-skipping
And this snippet should make it work on all python versions:
try:
import unittest2 as unittest
except ImportError:
import unittest
When running the tests, the entire test suite reports failure if a single test fails because an external dep (clustalw, mafft, uclust, etc) is not installed. Individual tests should first check if the required app is found, and only then execute. Otherwise, that specific test should be skipped.
The text was updated successfully, but these errors were encountered: