Skip to content

Commit

Permalink
Add docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mar10 committed Apr 28, 2024
1 parent 8261944 commit 3be8f35
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## 4.1.0 (unreleased)

- Fix #82 Error importing SFTPTarget with paramiko > 3.0
- Fix #92 Unquote url characters in password
- Drop support for Python 3.7 (end-of-life: 2023-06-27)
- Use GH Actions for CI instead of Travis

Expand Down
2 changes: 1 addition & 1 deletion docs/sphinx/development.rst
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ Code
`PEP 8 <https://www.python.org/dev/peps/pep-0008/>`_.

Failing tests or not follwing PEP 8 will break builds on
`travis <https://app.travis-ci.com/github/mar10/pyftpsync>`_,
`CI/CD <https://github.com/mar10/pyftpsync/actions/workflows/python-app.yml>`_,
so run ``$ pytest``, ``$ flake8``, and ``$ tox`` frequently and before you commit!


Expand Down
4 changes: 2 additions & 2 deletions docs/sphinx/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,9 @@ See :doc:`ug_run` for details.



.. |travis_badge| image:: https://travis-ci.org/mar10/pyftpsync.svg?branch=master
.. |travis_badge| image:: https://github.com/mar10/pyftpsync/actions/workflows/python-app.yml/badge.svg
:alt: Build Status
:target: https://app.travis-ci.com/github/mar10/pyftpsync
:target: https://github.com/mar10/pyftpsync/actions/workflows/python-app.yml

.. |pypi_badge| image:: https://img.shields.io/pypi/v/pyftpsync.svg
:alt: PyPI Version
Expand Down
2 changes: 1 addition & 1 deletion tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def test_basic(self):
def test_scan_list(self):
out = run_script("scan", self.local, "--list")
# We expect "file1.txt [spaces] 2014-01-01 13:00:00"
# but the time zone may be different on the travis server, so we relax:
# but the time zone may be different on the CI server, so we relax:
assert re.search(r"file1.txt\s+2014-01-01 \d\d:00:00", out)

def test_sync(self):
Expand Down
2 changes: 1 addition & 1 deletion yabs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ tasks:

- task: commit
add_known: true
# '[ci skip]' tells travis to ignore
# '[ci skip]' tells CI/CD to ignore
message: |
Bump prerelease ({version}) [ci skip]
Expand Down

0 comments on commit 3be8f35

Please sign in to comment.