1 parent 9a44fd8 commit 1a4dcb1Copy full SHA for 1a4dcb1
2 files changed
.github/workflows/test.yml
@@ -27,7 +27,7 @@ jobs:
27
- run: make env python-version=${{ matrix.python-version }}
28
- run: source ./env/bin/activate && which calculate_rmsd
29
- run: make test
30
- - run: make format
+ - run: make format python=./env/bin/python
31
- run: make build
32
- run: make test-dist
33
- run: for x in dist/*; do pip uninstall -y rmsd && pip install $x; done
Makefile
@@ -3,8 +3,8 @@
3
python-version=3.12
4
5
env=./env
6
-python=./${env}/bin/python
7
-pytest=./${env}/bin/pytest
+python=${env}/bin/python
+pytest=${env}/bin/pytest
8
package=rmsd
9
10
version_file1=./rmsd/version.py
0 commit comments