We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
make test
1 parent ff9a502 commit e80cad7Copy full SHA for e80cad7
Makefile
@@ -10,7 +10,7 @@ lint:
10
11
test:
12
PYTHON_VERSION=$$(python3 --version) && \
13
- if echo "$${PYTHON_VERSION}" | grep -q "3.10"; \
+ if echo "$${PYTHON_VERSION}" | grep -E -q "3\.[0-9]{2,}"; \
14
then python3 -m pytest tests; \
15
else nosetests -v --with-coverage --cover-package=$(PROJECT) tests; \
16
fi
requirements.txt
@@ -1,2 +1,2 @@
1
-python-gitlab==3.1.0
2
-giturlparse==0.10.0
+python-gitlab>=3.1.0
+giturlparse>=0.10.0
0 commit comments