Skip to content

Commit

Permalink
ci: remove python subdirectory
Browse files Browse the repository at this point in the history
  • Loading branch information
william-silversmith committed Jul 17, 2024
1 parent 5a5e4d1 commit 9bb5181
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
1 change: 0 additions & 1 deletion .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ jobs:
- name: Build wheels
uses: pypa/[email protected]
with:
package-dir: ./python
output-dir: ./wheelhouse
# to supply options, put them in 'env', like:
env:
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,16 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
package-dir: ./python

- uses: actions/checkout@v2

- name: Install dependencies
run: |
cd python
python -m pip install --upgrade pip
python -m pip install pytest numpy scipy setuptools wheel
- name: Compile
run: cd python && python setup.py develop
run: python setup.py develop

- name: Test with pytest
run: python -m pytest -v -x python/automated_test.py
run: python -m pytest -v -x automated_test.py

0 comments on commit 9bb5181

Please sign in to comment.