annotate test.py @ 25:4645249b8f5e

Test after Ubuntu upgrade
author Neil Muller <drnlmuller@gmail.com>
date Mon, 01 Feb 2021 12:25:02 +0200
parents df39b71bd80a
children 5207a0a39f43
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
d7a061749a84 Test commit to see if CIA triggers
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
1 #!/usr/bin/python
d7a061749a84 Test commit to see if CIA triggers
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
2
d7a061749a84 Test commit to see if CIA triggers
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
3 """Test script to be used for hghooks debugging"""
d7a061749a84 Test commit to see if CIA triggers
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
4
3
8cb24da1f91c Pep8 but not pyflakes clean. Should still fail
Neil Muller <drnlmuller@gmail.com>
parents: 2
diff changeset
5 import sys
2
b772d357d698 This push should fail
Neil Muller <drnlmuller@gmail.com>
parents: 1
diff changeset
6
1
d7a061749a84 Test commit to see if CIA triggers
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
7
d7a061749a84 Test commit to see if CIA triggers
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
8 def main(args):
3
8cb24da1f91c Pep8 but not pyflakes clean. Should still fail
Neil Muller <drnlmuller@gmail.com>
parents: 2
diff changeset
9 print args
23
df39b71bd80a Trigger a commit
Neil Muller <drnlmuller@gmail.com>
parents: 7
diff changeset
10 return None
1
d7a061749a84 Test commit to see if CIA triggers
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
11
d7a061749a84 Test commit to see if CIA triggers
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
12
25
4645249b8f5e Test after Ubuntu upgrade
Neil Muller <drnlmuller@gmail.com>
parents: 23
diff changeset
13 def help():
4645249b8f5e Test after Ubuntu upgrade
Neil Muller <drnlmuller@gmail.com>
parents: 23
diff changeset
14 print("You're on your own here")
4645249b8f5e Test after Ubuntu upgrade
Neil Muller <drnlmuller@gmail.com>
parents: 23
diff changeset
15
4645249b8f5e Test after Ubuntu upgrade
Neil Muller <drnlmuller@gmail.com>
parents: 23
diff changeset
16
1
d7a061749a84 Test commit to see if CIA triggers
Neil Muller <drnlmuller@gmail.com>
parents:
diff changeset
17 if __name__ == "__main__":
2
b772d357d698 This push should fail
Neil Muller <drnlmuller@gmail.com>
parents: 1
diff changeset
18 main(sys.argv)