File: update_registry.py

package info (click to toggle)
python-rosettasciio 0.7.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 144,644 kB
  • sloc: python: 36,638; xml: 2,582; makefile: 20; ansic: 4
file content (15 lines) | stat: -rw-r--r-- 257 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env python3
import os
import subprocess


def main():
    os.chdir(r"rsciio/tests")
    cmd = ("python", "registry_utils.py")

    return subprocess.call(cmd)


if __name__ == "__main__":
    # Script used by the pre-commit hook
    exit(main())