diff options
author | Fedja Beader <fedja@protonmail.ch> | 2023-12-12 21:26:41 +0100 |
---|---|---|
committer | Fedja Beader <fedja@protonmail.ch> | 2023-12-12 22:25:37 +0100 |
commit | 6bfc88d0b0613dab1b25de913311cbeedfff3132 (patch) | |
tree | ecee142136ca410299fa6b3f39c77fc11f286dc9 /test-everything.sh | |
parent | 635a136ec06c00efadc46a9d364f15d771f4036e (diff) | |
download | attobuild-6bfc88d0b0613dab1b25de913311cbeedfff3132.tar.gz attobuild-6bfc88d0b0613dab1b25de913311cbeedfff3132.tar.bz2 attobuild-6bfc88d0b0613dab1b25de913311cbeedfff3132.tar.xz attobuild-6bfc88d0b0613dab1b25de913311cbeedfff3132.zip |
Update README and demo project to python3
Update py2->py3 in README
Not strictly necessary, but use python3 directly + remove py2 compatibility line
Use python3 explicity. Debian (CI) does not have a python->python3 link?
Diffstat (limited to 'test-everything.sh')
-rwxr-xr-x | test-everything.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test-everything.sh b/test-everything.sh index 64fc89d..c45ad00 100755 --- a/test-everything.sh +++ b/test-everything.sh @@ -1,5 +1,6 @@ #!/bin/sh -e -python -m unittest discover "$@" +python3 -m unittest discover "$@" + mkdir -p demo-build cd demo-build ../demo-project/configure |