Skip to content

Commit

Permalink
Remove TravisCI and add Github actions badges to README.rst and d…
Browse files Browse the repository at this point in the history
…ocs.
  • Loading branch information
Andreas Kaiser committed Nov 18, 2020
1 parent c643f32 commit fa2e469
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 46 deletions.
34 changes: 0 additions & 34 deletions .travis.yml

This file was deleted.

32 changes: 25 additions & 7 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,26 @@ Kotti

|pypi|_
|license|_
|build_status_stable|_

|build_status_stable_postgresql|_
|build_status_stable_mysql|_
|build_status_stable_sqlite|_

.. |pypi| image:: https://img.shields.io/pypi/v/Kotti.svg?style=flat-square
.. _pypi: https://pypi.python.org/pypi/Kotti/

.. |license| image:: https://img.shields.io/pypi/l/Kotti.svg?style=flat-square
.. _license: http://www.repoze.org/LICENSE.txt

.. |build_status_stable| image:: https://img.shields.io/travis/Kotti/Kotti/stable.svg?style=flat-square
.. _build_status_stable: http://travis-ci.org/Kotti/Kotti
.. |build_status_stable_postgresql| image:: https://github.com/Kotti/Kotti/workflows/PostgreSQL/badge.svg?branch=stable
.. _build_status_stable_postgresql: https://github.com/Kotti/Kotti/actions?query=workflow%3APostgreSQL+branch%3Astable

.. |build_status_stable_mysql| image:: https://github.com/Kotti/Kotti/workflows/MySQL/badge.svg?branch=stable
.. _build_status_stable_mysql: https://github.com/Kotti/Kotti/actions?query=workflow%3AMySQL+branch%3Astable

.. |build_status_stable_sqlite| image:: https://github.com/Kotti/Kotti/workflows/SQLite/badge.svg?branch=stable
.. _build_status_stable_sqlite: https://github.com/Kotti/Kotti/actions?query=workflow%3ASQLite+branch%3Astable


Kotti is a high-level, Pythonic web application framework based on Pyramid_ and SQLAlchemy_.
It includes an extensible Content Management System called the Kotti CMS (see below).
Expand Down Expand Up @@ -90,7 +100,10 @@ If you think you found a bug, open an issue on our `Github bugtracker <https://g
Development
===========

|build_status_master|_
|build_status_master_postgresql|_
|build_status_master_mysql|_
|build_status_master_sqlite|_

|coveralls|_
|codacy|_
|codeclimate|_
Expand All @@ -105,9 +118,14 @@ We adhere to `high quality coding standards`_, have an extensive test suite with

Contributions are always welcome, read our `contribution guidelines`_ and visit our `Github repository`_.

.. |build_status_master| image:: https://img.shields.io/travis/Kotti/Kotti/master.svg?style=flat-square
.. _build_status_master: http://travis-ci.org/Kotti/Kotti
.. _continuous integration: http://travis-ci.org/Kotti/Kotti
.. |build_status_master_postgresql| image:: https://github.com/Kotti/Kotti/workflows/PostgreSQL/badge.svg?branch=master
.. _build_status_master_postgresql: https://github.com/Kotti/Kotti/actions?query=workflow%3APostgreSQL+branch%3Amaster

.. |build_status_master_mysql| image:: https://github.com/Kotti/Kotti/workflows/MySQL/badge.svg?branch=master
.. _build_status_master_mysql: https://github.com/Kotti/Kotti/actions?query=workflow%3AMySQL+branch%3Amaster

.. |build_status_master_sqlite| image:: https://github.com/Kotti/Kotti/workflows/SQLite/badge.svg?branch=master
.. _build_status_master_sqlite: https://github.com/Kotti/Kotti/actions?query=workflow%3ASQLite+branch%3Amaster

.. |requires.io| image:: https://img.shields.io/requires/github/Kotti/Kotti.svg?style=flat-square
.. _requires.io: https://requires.io/github/Kotti/Kotti/requirements/?branch=master
Expand Down
18 changes: 13 additions & 5 deletions docs/first_steps/overview.rst
Original file line number Diff line number Diff line change
Expand Up @@ -67,24 +67,32 @@ Use this command:
git clone git@github.com:Kotti/Kotti
`Continuous testing`_ against different versions of Python and with *PostgreSQL*, *MySQL* and *SQLite* and a complete test coverage make Kotti a **stable** platform to work with. |build_status|_
`Continuous testing`_ against different versions of Python and with *PostgreSQL*, *MySQL* and *SQLite* and a complete test coverage make Kotti a **stable** platform to work with.

|build_status_stable_postgresql|_
|build_status_stable_mysql|_
|build_status_stable_sqlite|_

Support
-------

- Python 3.5-3.7
- Python 3.6-3.9
- Support for PostgreSQL, MySQL and SQLite (tested regularly), and a list of `other SQL databases`_
- Support for WSGI and a `variety of web servers`_, including Apache


.. _repoze.workflow: http://docs.repoze.org/workflow/
.. _Chameleon: https://chameleon.readthedocs.io/
.. _Colander: http://docs.pylonsproject.org/projects/colander/en/latest/
.. _continuous testing: http://travis-ci.org/Kotti/Kotti
.. _continuous testing: https://github.com/Kotti/Kotti/actions
.. _Deform: http://docs.pylonsproject.org/projects/deform/en/latest/
.. _developed on Github: https://github.com/Kotti/Kotti
.. |build_status| image:: https://secure.travis-ci.org/Kotti/Kotti.png?branch=master
.. _build_status: http://travis-ci.org/Kotti/Kotti
.. |build_status_stable_postgresql| image:: https://github.com/Kotti/Kotti/workflows/PostgreSQL/badge.svg?branch=stable
.. _build_status_stable_postgresql: https://github.com/Kotti/Kotti/actions?query=workflow%3APostgreSQL+branch%3Astable
.. |build_status_stable_mysql| image:: https://github.com/Kotti/Kotti/workflows/MySQL/badge.svg?branch=stable
.. _build_status_stable_mysql: https://github.com/Kotti/Kotti/actions?query=workflow%3AMySQL+branch%3Astable
.. |build_status_stable_sqlite| image:: https://github.com/Kotti/Kotti/workflows/SQLite/badge.svg?branch=stable
.. _build_status_stable_sqlite: https://github.com/Kotti/Kotti/actions?query=workflow%3ASQLite+branch%3Astable
.. _installation:
.. _other SQL databases: http://www.sqlalchemy.org/docs/core/engines.html#supported-databases
.. _variety of web servers: http://wsgi.org/wsgi/Servers

0 comments on commit fa2e469

Please sign in to comment.