blob: 7d57ff65b8d7e7f5379f39ebb5db38f21aa1cee2 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import os
import random
import string
def random_string(l):
s = "".join(random.choice(string.letters) for i in xrange(l))
return s
def skip_integration():
return os.environ.get('SKIP_INTEGRATION')
|