#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ test_xsubjects.py Last updated: 2019-10-05 """ from wz_core.reporting import Report from test_core import testinit, runTests if __name__ == '__main__': testinit () from wz_grades import gradeprocessing runTests (gradeprocessing)
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ test_spimport.py Last updated: 2019-12-19 """ from wz_core.reporting import Report from test_core import testinit, runTests if __name__ == '__main__': testinit() from wz_text import summary runTests(summary)
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ test_subjects.py Last updated: 2019-09-28 """ from wz_core.reporting import Report from test_core import testinit, runTests if __name__ == '__main__': testinit () from wz_core import courses runTests (courses)
Run some tests on the modules in the wz_attendance package. =+LICENCE============================= Copyright 2019 Michael Towers Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. =-LICENCE======================================== """ from wz_core.reporting import Report from test_core import testinit, runTests if __name__ == '__main__': testinit() from wz_attendance import attendance runTests(attendance)
Run some tests on the modules in the wz_text package. =+LICENCE============================= Copyright 2019 Michael Towers Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. =-LICENCE======================================== """ from wz_core.reporting import Report from test_core import testinit, runTests if __name__ == '__main__': testinit () from wz_text import coversheet runTests (coversheet)
Run tests on the module handling subject choice tables in the wz_core package. =+LICENCE============================= Copyright 2020 Michael Towers Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. =-LICENCE======================================== """ from wz_core.reporting import Report from test_core import testinit, runTests if __name__ == '__main__': testinit() from wz_core import subjectchoices runTests(subjectchoices)
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ test_compat.py Last updated: 2019-09-27 """ from wz_core.reporting import Report from test_core import testinit, runTests if __name__ == '__main__': testinit() # from wz_compat import migrate # runTests (migrate) # from wz_compat import import_pupils # runTests (import_pupils) from wz_compat import config runTests(config) from wz_compat import grades runTests(grades)
Run some tests on the abitur module in the wz_grades package. =+LICENCE============================= Copyright 2019 Michael Towers Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. =-LICENCE======================================== """ from wz_core.reporting import Report from test_core import testinit, runTests if __name__ == '__main__': testinit() from wz_grades import makeabireports runTests(makeabireports)
You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. =-LICENCE======================================== """ from wz_core.reporting import Report from test_core import testinit, runTests if __name__ == '__main__': testinit() # from wz_compat import grade_classes # runTests(grade_classes) # from wz_grades import gradedata # runTests (gradedata) # from wz_grades import makereports # runTests (makereports) from wz_grades import gradetable runTests(gradetable)