Skip to content

HaeSe0ng/SWPP

Repository files navigation

Matchmaker

Build Status Coverage Status Quality Gate Status

Site Address

https://t1matchmaker.ml/

How to run

Frontend

  • yarn installf
  • yarn start

Backend

  • pip install -r requirements.txt or yarn installb
  • python manage.py runserver or yarn back

How to test

Frontend

Unit Test

Used Enzyme for frontend testing

  • yarn testf

Lint Check

Used Eslint with eslint-config-airbnb

  • eslint srcor yarn lintf

Backend

Unit Test

Used Pytest and Coverage

  • coverage run --branch --source="." -m pytest

  • coverage report --fail-under=80 -m

    Or just type

  • yarn testb

Lint Check

Used Pylint

  • pylint ./*/ or yarn lintb