From 6c451d01d5b07eeb50db620ac3a4d432be05b5f0 Mon Sep 17 00:00:00 2001 From: Tyler Kennedy Date: Fri, 20 May 2022 03:09:33 -0400 Subject: [PATCH] Try to fix normal tests. --- .github/workflows/tests.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 933ae3329..ca9e78287 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -14,22 +14,27 @@ jobs: python-version: ["3.7", "3.8", "3.9", "3.10"] steps: - uses: actions/checkout@v2 + - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} + - name: Install dependencies run: | python -m pip install --upgrade pip wheel python -m pip install -r requirements.txt python -m pip install -r requirements_test.txt + - name: Installing Python TA-Lib run: | python setup.py install + - name: Lint with flake8 run: | # stop the build if there are Python syntax errors or undefined names flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics + - name: Test with pytest run: | - PYTHONPATH=. pytest + python -m pytest tests