We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b624ac0 commit 1e00a2cCopy full SHA for 1e00a2c
nox.py
@@ -61,6 +61,11 @@ def collect_sample_dirs(start_dir, blacklist=set()):
61
62
63
def get_changed_files():
64
+ # Debug info
65
+ print('TRAVIS_PULL_REQUEST: {}'.format(os.environ('TRAVIS_PULL_REQUEST')))
66
+ print('TRAVIS_COMMIT: {}'.format(os.environ.get('TRAVIS_COMMIT')))
67
+ print('TRAVIS_BRANCH: {}'.format(os.environ.get('TRAVIS_BRANCH')))
68
+
69
pr = os.environ.get('TRAVIS_PULL_REQUEST')
70
if pr == 'false':
71
# This is not a pull request.
0 commit comments