diff options
author | Thomas Lively <7121787+tlively@users.noreply.github.com> | 2020-11-16 16:57:00 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-16 16:57:00 -0800 |
commit | 8046ebaa848617588f945a007adb2ba8489a6399 (patch) | |
tree | 3e854e2ecf037b7e6962488edf8454454839fafc | |
parent | 636c56b9bafcc8f000003da098fe81fb454b766d (diff) | |
download | binaryen-8046ebaa848617588f945a007adb2ba8489a6399.tar.gz binaryen-8046ebaa848617588f945a007adb2ba8489a6399.tar.bz2 binaryen-8046ebaa848617588f945a007adb2ba8489a6399.zip |
Add requirements-dev.txt (#3377)
This file makes it simple for users and CI bots to install all the Python dev
dependencies necessary to run the test suite. Right now it only contains flake8,
but soon it will contain lit and filecheck as well (see #3367).
-rw-r--r-- | .github/workflows/ci.yml | 2 | ||||
-rw-r--r-- | requirements-dev.txt | 6 |
2 files changed, 7 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b946eacd4..4f649ec64 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: - uses: actions/checkout@v1 - name: install tools run: | - sudo pip3 install flake8==3.7.8 + sudo pip3 install -r requirements-dev.txt sudo apt-get install clang-format clang-tidy - name: update path run: echo "PATH=$PATH:/usr/lib/llvm-8/bin" >> $GITHUB_ENV diff --git a/requirements-dev.txt b/requirements-dev.txt new file mode 100644 index 000000000..f933898d1 --- /dev/null +++ b/requirements-dev.txt @@ -0,0 +1,6 @@ +# These requirements are only needed for developers who want to run the test +# suite or flake8, not for end users. + +# Install with `pip3 install -r requirements-dev.txt` + +flake8==3.7.8 |