Makefile 249 B

123456789101112131415161718
  1. install::
  2. python3 setup.py install
  3. setup/venv::
  4. python3 -m venv rover-venv
  5. setup/dev:: setup/venv
  6. rover-venv/bin/pip install -r requirements.txt
  7. test/unit::
  8. pytest -vv tests
  9. test/integration::
  10. rover FFF
  11. test:: test/unit test/integration