import os.path import sys import unittest def suite(): test_loader = unittest.TestLoader() test_suite = test_loader.discover(os.path.dirname(__file__), pattern='test_*.py') return test_suite if __name__ == '__main__': runner = unittest.runner.TextTestRunner() result = runner.run(suite()) sys.exit(not result.wasSuccessful()) ble id='header'> cgit logo index : guix
Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/tests/store-database.scm
AgeCommit message (Expand)Author
2021-01-31database: Validate #:nar-size and #:time when registering store items....Ludovic Courtès
2020-12-15database: Remove 'register-path'....Ludovic Courtès
2020-12-15database: Remove #:deduplicate? and #:reset-timestamps? from 'register-path'....Ludovic Courtès
2020-11-21store-database: Add test checking the directory mtime after 'register-path'....Ludovic Courtès