diff --git a/.github/workflows/Tests.yml b/.github/workflows/Tests.yml index 55fff79..f105247 100644 --- a/.github/workflows/Tests.yml +++ b/.github/workflows/Tests.yml @@ -27,7 +27,6 @@ jobs: export HOME="/home/gap" cd /home/gap/.gap/pkg/ sudo apt update - sudo apt dist-upgrade -y sudo apt install -y texlive-latex-extra texlive-fonts-extra git clone --depth 1 https://github.com/gap-packages/AutoDoc.git git clone --depth 1 https://github.com/homalg-project/homalg_project.git diff --git a/PackageInfo.g b/PackageInfo.g index 8a1e48a..bd6176f 100644 --- a/PackageInfo.g +++ b/PackageInfo.g @@ -11,7 +11,7 @@ SetPackageInfo( rec( PackageName := "CatReps", Subtitle := "Representations and cohomology of finite categories", Version := Maximum( [ - "2020.11-02", ## Mohamed's version + "2020.12-01", ## Mohamed's version ## this line prevents merge conflicts "2020.10-02", ## Tibor's version ## this line prevents merge conflicts @@ -73,7 +73,7 @@ SourceRepository := rec( URL := "https://github.com/homalg-project/CatReps", ), IssueTrackerURL := Concatenation( ~.SourceRepository.URL, "/issues" ), -PackageWWWHome := "https://homalg-project.github.io/CatReps", +PackageWWWHome := "https://homalg-project.github.io/pkg/CatReps", PackageInfoURL := "https://homalg-project.github.io/CatReps/PackageInfo.g", README_URL := "https://homalg-project.github.io/CatReps/README.md", ArchiveURL := Concatenation( "https://github.com/homalg-project/CatReps/releases/download/v", ~.Version, "/CatReps-", ~.Version ), diff --git a/tst/050_LoadPackage.tst b/tst/050_LoadPackage.tst new file mode 100644 index 0000000..7c7cad8 --- /dev/null +++ b/tst/050_LoadPackage.tst @@ -0,0 +1,9 @@ +# SPDX-License-Identifier: GPL-2.0-or-later +# CatReps: Representations and cohomology of finite categories +# +# This file tests if the package can be loaded without errors or warnings. +# + +gap> LoadPackage( "FreydCategoriesForCAP", false ); +#I method installed for IsInjective matches more than one declaration +true diff --git a/tst/000_LoadPackage.tst b/tst/100_LoadPackage.tst similarity index 100% rename from tst/000_LoadPackage.tst rename to tst/100_LoadPackage.tst diff --git a/tst/testall.g b/tst/testall.g index cc0eccc..d5f7d5c 100644 --- a/tst/testall.g +++ b/tst/testall.g @@ -11,8 +11,6 @@ options := rec( ), ); -LoadPackage( "FreydCategoriesForCAP" ); - TestDirectory( DirectoriesPackageLibrary( "CatReps", "tst" ), options ); FORCE_QUIT_GAP( 1 ); # if we ever get here, there was an error