summaryrefslogtreecommitdiff
path: root/tests/farm/run/src/chdir.py
blob: 35cfcc811ff4e31a6d5e710ef7d55ad3945456c5 (plain)
1
2
3
4
5
6
7
# Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0
# For details: https://bitbucket.org/ned/coveragepy/src/default/NOTICE.txt

import os
print("Line One")
os.chdir("subdir")
print("Line Two")