Started adding tests to tests for the models' integrity with GTFS

This commit is contained in:
Johannes Randerath
2024-06-27 13:01:56 +02:00
parent 7962ec4b6c
commit cf6fcda0ed
22 changed files with 943 additions and 180 deletions

8
bin/pyproj Executable file
View File

@@ -0,0 +1,8 @@
#!/home/johannes/code/transport-accessibility/bin/python
# -*- coding: utf-8 -*-
import re
import sys
from pyproj.__main__ import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())