Skip to content

StanfordVLSI/dragonphy2

Repository files navigation

DragonPHY

BuildKite Status License:Apache-2.0 Code Coverage

DragonPHY is the second design in the Open Source PHY project at Stanford.

Installation

  1. Clone the repository.
> git clone https://github.com/StanfordVLSI/dragonphy2.git
  1. Go into the top-level folder
> cd dragonphy2
  1. Install the Python package associated with this project.
> pip install -e .

Upgrading

To upgrade to the latest version of DragonPHY:

  1. Pull changes from the master branch.
> git pull origin master
  1. Re-install the Python package (since dependencies may have changed):
> pip install -e .

Running tests

  1. First install pytest if it is not already installed:
> pip install pytest
  1. Then, in the top directory of the project, run the tests in the tests directory:
> pytest tests