Python 3: print function in a shell oneliner in Makefile
Fixes File "<string>", line 1 import string,random; print 'ansible-testing-' + ''.join(random.choice(string.ascii_letters + string.digits) for _ in xrange(8)); ^ SyntaxError: invalid syntax when running integration tests with . hacking/env-setup . .tox/py35/bin/activate make -C test/integration test_var_precedence
This commit is contained in:
parent
38b99a7a4d
commit
04a7ef416e
1 changed files with 1 additions and 1 deletions
|
@ -3,7 +3,7 @@ VARS_FILE ?= integration_config.yml
|
|||
|
||||
# Create a semi-random string for use when testing cloud-based resources
|
||||
ifndef CLOUD_RESOURCE_PREFIX
|
||||
CLOUD_RESOURCE_PREFIX := $(shell python -c "import string,random; print 'ansible-testing-' + ''.join(random.choice(string.ascii_letters + string.digits) for _ in xrange(8));")
|
||||
CLOUD_RESOURCE_PREFIX := $(shell python -c "import string,random; print('ansible-testing-' + ''.join(random.choice(string.ascii_letters + string.digits) for _ in range(8)));")
|
||||
endif
|
||||
|
||||
CREDENTIALS_FILE = credentials.yml
|
||||
|
|
Loading…
Reference in a new issue