Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move paramiko job to github actions #5565

Merged
merged 1 commit into from Nov 14, 2020
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
File renamed without changes.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Expand Up @@ -213,6 +213,7 @@ jobs:
strategy:
matrix:
DOWNSTREAM:
- paramiko
- pyopenssl
- twisted
- aws-encryption-sdk
Expand All @@ -228,6 +229,7 @@ jobs:
python-version: 3.7
- run: python -m pip install -U pip wheel
- run: ./.github/downstream.d/${{ matrix.DOWNSTREAM }}.sh install
- run: pip uninstall -y enum34
reaperhulk marked this conversation as resolved.
Show resolved Hide resolved
- run: pip install .
- run: ./.github/downstream.d/${{ matrix.DOWNSTREAM }}.sh run

Expand Down
31 changes: 0 additions & 31 deletions .travis.yml

This file was deleted.

12 changes: 0 additions & 12 deletions .travis/install.sh

This file was deleted.

11 changes: 0 additions & 11 deletions .travis/run.sh

This file was deleted.

2 changes: 0 additions & 2 deletions MANIFEST.in
Expand Up @@ -16,8 +16,6 @@ recursive-include tests *.py
exclude vectors
recursive-exclude vectors *

exclude .travis.yml .travis
recursive-exclude .travis *
recursive-exclude .github *

exclude release.py .coveragerc codecov.yml .readthedocs.yml dev-requirements.txt rtd-requirements.txt tox.ini
Expand Down
3 changes: 0 additions & 3 deletions README.rst
Expand Up @@ -9,9 +9,6 @@ pyca/cryptography
:target: https://cryptography.io
:alt: Latest Docs

.. image:: https://travis-ci.org/pyca/cryptography.svg?branch=master
:target: https://travis-ci.org/pyca/cryptography

.. image:: https://github.com/pyca/cryptography/workflows/CI/badge.svg?branch=master
:target: https://github.com/pyca/cryptography/actions?query=workflow%3ACI+branch%3Amaster

Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Expand Up @@ -8,7 +8,7 @@ extras =
test
ssh: ssh
deps =
# This must be kept in sync with .travis/install.sh and .github/workflows/ci.yml
# This must be kept in sync with .github/workflows/ci.yml
coverage
./vectors
randomorder: pytest-randomly
Expand Down