Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .github/workflows/coveralls.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: LibraryOfCongress/tests-bagit-python
on:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-16.04
steps:
- name: checkout
uses: actions/checkout@v3.5.0
- uses: actions/setup-python@v4.6.0
with:
python-version: "${{ matrix.python }}"
- run: apt-get -y install gettext
- run: pip install --upgrade pip
- run: pip install coveralls coverage
- run: coverage run --include=bagit.py setup.py test
- run: coveralls
if: "${{ success() }}"
strategy:
matrix:
python:
- '3.10'
28 changes: 0 additions & 28 deletions .travis.yml

This file was deleted.

5 changes: 1 addition & 4 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,5 @@ name = "pypi"
[dev-packages]
tox = "*"
black = "*"
"flake8" = "*"
flake8 = "*"
isort = "*"

[pipenv]
allow_prereleases = true
187 changes: 126 additions & 61 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -267,8 +267,6 @@ License
Note: By contributing to this project, you agree to license your work
under the same terms as those that govern this project's distribution.

.. |Build Status| image:: https://travis-ci.org/LibraryOfCongress/bagit-python.svg?branch=master
:target: http://travis-ci.org/LibraryOfCongress/bagit-python
.. |Coverage Status| image:: https://coveralls.io/repos/github/LibraryOfCongress/bagit-python/badge.svg?branch=master
:target: https://coveralls.io/github/LibraryOfCongress/bagit-python?branch=master
.. |cc0| image:: http://i.creativecommons.org/p/zero/1.0/88x31.png
Expand Down