Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 863 Bytes

File metadata and controls

27 lines (20 loc) · 863 Bytes

CAS741: CEWS

Developer Names: Lesley Wheat

Date of project start: 2023-01-07

This project is a python program to calculate the Cut Edge Weight Statistic.

The folders and files for this project are as follows:

  • docs: Documentation for the project
  • refs: Reference material used for the project, including papers
  • src: Source code
  • test: Test cases

System requirements: Python version >= 3.9

Test installation instructions:

  • Install python version 3.9 or higher (select add python to path)
  • In bash, navigate to main folder: CAS741_CEWS
  • Run command: python -m venv .venv
  • Run command: source ./.venv/Scripts/activate
  • Run command: pip install -r requirements-dev.txt
  • To run tests for Verification and Validation, use command: pytest -v -m VnV
  • To run all tests (very slow), use command: pytest
  • To see all test markers, read file: pytest.ini