Skip to content

Commit

Permalink
Replace travis with Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mbanczerowski committed Sep 28, 2021
1 parent a5b2a08 commit 6196e75
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 9 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: CI

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.7.3
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Run tests
run: |
pytest
8 changes: 0 additions & 8 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion src/galaxy/api/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class Cookie:

@dataclass
class NextStep:
"""Return this from :meth:`.authenticate` or :meth:`.pass_login_credentials` to open client built-in browser with given url.
R"""Return this from :meth:`.authenticate` or :meth:`.pass_login_credentials` to open client built-in browser with given url.
For example:
.. code-block:: python
Expand Down

0 comments on commit 6196e75

Please sign in to comment.