Ignore test failure in build

How can this be accomplished again it seems like I have forgotten… I have done it with “or” syntax previously, as in

 - 1 || conda run pytest

now that doesnt seem to work…

Just use shell, you can add || true at the end of the command line to ignore the eventual errors:

<command> || true

The Travis runner will now always consider the CLI successful.

yes the tree statement, thank you @montana!