summaryrefslogtreecommitdiff
path: root/tests/farm/run/src/chdir.py
blob: 250f7132f0502eebd72b54840d699dcbb8cfadc7 (plain)
1
2
3
4
5
6
7
# Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0
# For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt

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