Skip to content

Commit

Permalink
enable skipping sparse
Browse files Browse the repository at this point in the history
  • Loading branch information
droundy committed Mar 18, 2017
1 parent 5a38ab6 commit 0f01701
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions sparse.py
Expand Up @@ -3,6 +3,10 @@
from __future__ import print_function
import glob, os, sys, platform, subprocess

if 'SKIPSPARSE' in os.environ:
print("# skipping sparse as requested")
exit(1)

myplatform = sys.platform
if myplatform == 'linux2':
myplatform = 'linux'
Expand Down

0 comments on commit 0f01701

Please sign in to comment.