mirror of
https://github.com/arcan1s/ahriman.git
synced 2025-04-24 15:27:17 +00:00
* PEP-673 use Self as return type for classmethods * add dummy test file * remove python3.10 compat
11 lines
205 B
Bash
Executable File
11 lines
205 B
Bash
Executable File
#!/bin/bash
|
|
# Install dependencies and run test in container
|
|
|
|
set -ex
|
|
|
|
# install dependencies
|
|
pacman --noconfirm -Syu base-devel python-setuptools python-tox
|
|
|
|
# run test and check targets
|
|
make check tests
|