https://github.com/homalg-project/homalg_project
Raw File
Tip revision: 871a7e41a089a4ad9b4315bdb45dedd8831f10f7 authored by Fabian Zickgraf on 08 October 2020, 11:10:01 UTC
Add all files in gh-pages directory
Tip revision: 871a7e4
maketest.g
LoadPackage( "AutoDoc" );
LoadPackage( "GaussForHomalg" );
LoadPackage( "Modules" );

dir := DirectoryCurrent( );
files := AUTODOC_FindMatchingFiles( dir,
    ["gap", "examples", "examples/doc" ],
    [ "g", "gi", "gd" ] );
files := List(files, x -> Concatenation("../", x));

example_tree := ExtractExamples( Directory("doc/"), "GaussForHomalg.xml", files, "All" );
RunExamples( example_tree, rec( compareFunction := "uptowhitespace" ) );

QUIT;
back to top