Skip to content

Commit 11edaf3

Browse files
committed
Simplify workflow names
Signed-off-by: Roger Aiudi <[email protected]>
1 parent fb3cb86 commit 11edaf3

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

.github/workflows/publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Upload Python Package
1+
name: publish
22

33
on:
44
push:

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Run Tests
1+
name: tests
22

33
on:
44
pull_request:

README.rst

+3-2
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,17 @@ AIOHappyBase
99
:target: https://en.wikipedia.org/wiki/MIT_License
1010
:alt: Licence - MIT
1111

12-
.. image:: https://github.com/python-happybase/aiohappybase/workflows/Run%20Tests/badge.svg
12+
.. image:: https://github.com/python-happybase/aiohappybase/workflows/tests/badge.svg
1313
:target: https://github.com/python-happybase/aiohappybase
14-
:alt: Workflow Status
14+
:alt: Tests Status
1515

1616
.. image:: https://readthedocs.org/projects/aiohappybase/badge/?version=latest
1717
:target: https://aiohappybase.readthedocs.io/en/latest/?badge=latest
1818
:alt: Documentation Status
1919

2020
.. image:: https://codecov.io/gh/python-happybase/aiohappybase/branch/master/graph/badge.svg
2121
:target: https://codecov.io/gh/python-happybase/aiohappybase
22+
:alt: Coverage Status
2223

2324
**AIOHappyBase** is a developer-friendly Python_ library to interact asynchronously with Apache
2425
HBase_. It is a fork of the original `HappyBase <https://github.com/wbolster/happybase>`_ library aiming to deliver a very similar API.

aiohappybase/batch.py

+1
Original file line numberDiff line numberDiff line change
@@ -280,6 +280,7 @@ class Batch:
280280
This class cannot be instantiated directly;
281281
use :py:meth:`Table.batch` instead.
282282
"""
283+
283284
def __init__(self,
284285
table: 'Table',
285286
timestamp: int = None,

0 commit comments

Comments
 (0)