Skip to content
This repository was archived by the owner on Sep 12, 2024. It is now read-only.

Commit f3cfac8

Browse files
committed
add self hosted runners
1 parent d0f4cd4 commit f3cfac8

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed

.github/workflows/run_test.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,10 @@ on: [push, pull_request]
44

55
jobs:
66
lint-python:
7-
runs-on: ubuntu-latest
7+
runs-on: ['self-hosted', 'Linux', 'X64']
88
steps:
99
- name: Checkout
1010
uses: actions/[email protected]
11-
- name: Setup Python
12-
uses: actions/setup-python@v2
13-
with:
14-
python-version: 2.7
15-
- name: Install Pytest and mock
16-
run: |
17-
python2 -m pip install pytest mock
1811
- name: Run pytest
1912
run: |
2013
python2 -m pytest -v tests

tests/test_utils.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,6 @@ def getresponse(self):
257257
response = listCustodial(
258258
url='http://someurl.com/',
259259
)
260-
print response
261260
self.assertDictEqual(
262261
response, {
263262
'someSite1': ['someId'], 'someSite': ['someId']})

0 commit comments

Comments
 (0)