From 4748d2ca1c751296112bb53d051425d9a1956af3 Mon Sep 17 00:00:00 2001 From: Serghei Iakovlev Date: Sun, 3 Jan 2021 18:03:09 +0200 Subject: [PATCH] Amend documentation --- CHANGELOG.rst | 4 ++-- tests/test_client.py | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 029549f9..04345742 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -19,8 +19,8 @@ New features ~~~~~~~~~~~~ * Added ``-o`` as a short form of ``--org`` argument. -* Added ability to limit sync to the specified repositories using ``--repo`` - option. +* Added ability to limit sync to the specified repositories using ``-r``, + ``--repo`` option. Packaging changes ~~~~~~~~~~~~~~~~~ diff --git a/tests/test_client.py b/tests/test_client.py index 9005dfef..72aec97a 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -23,6 +23,7 @@ @pytest.mark.parametrize('token', ['', None, False]) def test_client_empty_token(token): + """Call Client() with empty token should raise exception.""" with pytest.raises(ValueError) as excinfo: Client(token)