We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 815040e commit d5165aeCopy full SHA for d5165ae
2 files changed
.github/workflows/python-app.yml
@@ -31,9 +31,9 @@ jobs:
31
- name: Lint with flake8
32
run: |
33
# stop the build if there are Python syntax errors or undefined names
34
- flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
+ flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics sqlparse
35
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
36
- flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
+ flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics sqlparse
37
- name: Test with pytest
38
39
pytest
README.rst
@@ -67,8 +67,8 @@ sqlparse is licensed under the BSD license.
67
Parts of the code are based on pygments written by Georg Brandl and others.
68
pygments-Homepage: http://pygments.org/
69
70
-.. |buildstatus| image:: https://secure.travis-ci.org/andialbrecht/sqlparse.png?branch=master
71
-.. _buildstatus: https://travis-ci.org/#!/andialbrecht/sqlparse
+.. |buildstatus| image:: https://github.com/andialbrecht/sqlparse/actions/workflows/python-app.yml/badge.svg
+.. _buildstatus: https://github.com/andialbrecht/sqlparse/actions/workflows/python-app.yml
72
.. |coverage| image:: https://codecov.io/gh/andialbrecht/sqlparse/branch/master/graph/badge.svg
73
.. _coverage: https://codecov.io/gh/andialbrecht/sqlparse
74
.. |docs| image:: https://readthedocs.org/projects/sqlparse/badge/?version=latest
0 commit comments