this repo has no description

Update `README.md` (#240)

It now recommends that users use `uv` and `scrapscript_tests.py` for
testing.

authored by

Abel Sen and committed by
GitHub
7eb85e24 20ada109

+26 -2
+26 -2
README.md
··· 77 77 ./scrapscript.py compile some.scrap --compile # produces a.out 78 78 ``` 79 79 80 - ## Running Tests 80 + ## Development Workflow 81 + 82 + ### Running Tests 81 83 82 84 ```bash 83 - python3 scrapscript.py test 85 + python scrapscript_tests.py 86 + ``` 87 + 88 + ### Type Checking the Python Sources 89 + ```bash 90 + mypy --strict scrapscript.py 91 + ``` 92 + 93 + ### Formatting the Python Sources 94 + ```bash 95 + ruff format scrapscript.py 96 + ``` 97 + 98 + ### Checking for Format Errors 99 + ```bash 100 + ruff check scrapscript.py 101 + ``` 102 + 103 + ### Using `uv` 104 + If you choose to use `uv` to manage development dependencies, you can run any of the previous four commands by prefixing them with `uv run`, e.g.: 105 + 106 + ```bash 107 + uv run python scrapscript_tests.py 84 108 ```