Skip to content

Commit 6196e75

Browse files
committed
Replace travis with Github Actions
1 parent a5b2a08 commit 6196e75

3 files changed

Lines changed: 21 additions & 9 deletions

File tree

.github/workflows/ci.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: CI
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-20.04
8+
steps:
9+
- uses: actions/checkout@v2
10+
- name: Set up Python
11+
uses: actions/setup-python@v2
12+
with:
13+
python-version: 3.7.3
14+
- name: Install dependencies
15+
run: |
16+
python -m pip install --upgrade pip
17+
pip install -r requirements-dev.txt
18+
- name: Run tests
19+
run: |
20+
pytest

.travis.yml

Lines changed: 0 additions & 8 deletions
This file was deleted.

src/galaxy/api/types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class Cookie:
3333

3434
@dataclass
3535
class NextStep:
36-
"""Return this from :meth:`.authenticate` or :meth:`.pass_login_credentials` to open client built-in browser with given url.
36+
R"""Return this from :meth:`.authenticate` or :meth:`.pass_login_credentials` to open client built-in browser with given url.
3737
For example:
3838
3939
.. code-block:: python

0 commit comments

Comments
 (0)