File tree Expand file tree Collapse file tree 2 files changed +9
-5
lines changed Expand file tree Collapse file tree 2 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -15,16 +15,20 @@ permissions:
1515jobs :
1616 build :
1717 runs-on : ubuntu-latest
18+ strategy :
19+ matrix :
20+ python-version : ['3.11', '3.12']
21+
1822 steps :
1923 - uses : actions/checkout@v4
2024 - name : Obtain dependency projects
2125 run : |
2226 git clone https://github.com/desultory/zenlib
2327 git clone https://github.com/desultory/pycpio
24- - name : Set up Python 3.12
28+ - name : Set up Python ${{ matrix.python-version }}
2529 uses : actions/setup-python@v5
2630 with :
27- python-version : " 3.12 "
31+ python-version : ${{ matrix.python-version }}
2832 - name : Install system deps
2933 run : |
3034 sudo apt update
3842 venv/bin/pip install .
3943 - name : Test fullauto.toml
4044 run : |
41- sudo venv/bin/python -m unittest discover tests
4245 sudo venv/bin/ugrd -d
46+ sudo venv/bin/python -m unittest discover tests -v
Original file line number Diff line number Diff line change 11__author__ = "desultory"
2- __version__ = "5.3.2 "
2+ __version__ = "5.3.3 "
33
44from pathlib import Path
55
@@ -223,7 +223,7 @@ def umount_fstab(self) -> list[str]:
223223 if not mountpoints :
224224 return []
225225
226- out = [f"einfo 'Unmounting filesystems: { " ," .join (mountpoints )} '" ]
226+ out = [f"einfo 'Unmounting filesystems: { ' ,' .join (mountpoints )} '" ]
227227 for mountpoint in mountpoints :
228228 out .append (f"umount { mountpoint } || ewarn 'Failed to unmount: { mountpoint } '" )
229229
You can’t perform that action at this time.
0 commit comments