Skip to content

Commit

Permalink
Travis debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Apr 9, 2018
1 parent 77906d2 commit 438d78d
Showing 1 changed file with 6 additions and 1 deletion.
Expand Up @@ -29,6 +29,7 @@

import nose2
import shutil
import shutil

from qgis.testing import (
start_app,
Expand All @@ -46,7 +47,11 @@ def setUpClass(cls):
Processing.initialize()
cls.cleanup_paths = []

assert Grass7Utils.installedVersion()
cmdList = ["grass74", "grass72", "grass71", "grass70", "grass",
"grass74.sh", "grass72.sh", "grass71.sh", "grass70.sh", "grass.sh"]
commands = {cmd: shutil.which(cmd) for cmd in cmdList}

assert Grass7Utils.installedVersion(), commands

@classmethod
def tearDownClass(cls):
Expand Down

0 comments on commit 438d78d

Please sign in to comment.