aboutsummaryrefslogtree
summaryrefslogtreecommitdiff
path: root/tests/__init__.py
blob: 450c5732e04c31167bd68a053e5c554e63747f8b (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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())
cense, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. (define-module (gnu artwork) #:use-module (guix packages) #:use-module (guix git-download) #:export (%artwork-repository)) ;;; Commentary: ;;; ;;; Common place for the definition of the Guix artwork repository. ;;; ;;; Code: (define %artwork-repository (let ((commit "4c7f2ce6428a63e202cd2a9474a06f68a946934d")) (origin (method git-fetch) (uri (git-reference (url "https://git.savannah.gnu.org/git/guix/guix-artwork.git") (commit commit))) (file-name (string-append "guix-artwork-" (string-take commit 7) "-checkout")) (sha256 (base32 "1rl569759q9wm1dxn7nkq3873d2k92giic7aa6jwzwr3n16prc7y"))))) ;;; artwork.scm ends here 2023-06-06services: Check if service is #f before applying clause....Josselin Poiret 2023-06-06services: 'modify-services' preserves service ordering....Ludovic Courtès 2023-06-02services: Error in MODIFY-SERVICES when services don't exist...Brian Cully 2023-05-16services: Add default values....Andrew Tropin 2023-03-16services: etc-service: Deprecate etc-service procedure....Bruno Victal