Skip to content

Commit a50232f

Browse files
committed
Try to fix CI
1 parent 89d2ea2 commit a50232f

5 files changed

Lines changed: 4 additions & 5 deletions

File tree

.github/workflows/ci_python3.5.1.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ jobs:
1616
key: python-compatibility-3.5.1-eggs
1717

1818
- name: Run tests on 3.5.1 latest
19-
run: docker run -v "${GITHUB_WORKSPACE}:/home/ymmsl-python" python:3.5.1 /bin/bash -c 'cd /home/ymmsl-python && pip install -U pip setuptools wheel git+https://github.com/yatiml/yatiml.git@develop && python setup.py test'
19+
run: docker run -v "${GITHUB_WORKSPACE}:/home/ymmsl-python" python:3.5.1 /bin/bash -c 'cd /home/ymmsl-python && pip install -U pip setuptools wheel && pip install -U git+https://github.com/yatiml/yatiml.git@develop && python setup.py test'

.github/workflows/ci_python3.5.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ jobs:
1616
key: python-compatibility-3.5-eggs
1717

1818
- name: Run tests on 3.5 latest
19-
run: docker run -v "${GITHUB_WORKSPACE}:/home/ymmsl-python" python:3.5 /bin/bash -c 'cd /home/ymmsl-python && pip install -U pip setuptools wheel git+https://github.com/yatiml/yatiml.git@develop && python setup.py test'
19+
run: docker run -v "${GITHUB_WORKSPACE}:/home/ymmsl-python" python:3.5 /bin/bash -c 'cd /home/ymmsl-python && pip install -U pip setuptools wheel && pip install -U git+https://github.com/yatiml/yatiml.git@develop && python setup.py test'

.github/workflows/ci_python3.6.1.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ jobs:
1616
key: python-compatibility-3.6-eggs
1717

1818
- name: Run tests on 3.6.1 latest
19-
run: docker run -v "${GITHUB_WORKSPACE}:/home/ymmsl-python" python:3.6.1 /bin/bash -c 'cd /home/ymmsl-python && pip install -U pip setuptools wheel git+https://github.com/yatiml/yatiml.git@develop && python setup.py test'
19+
run: docker run -v "${GITHUB_WORKSPACE}:/home/ymmsl-python" python:3.6.1 /bin/bash -c 'cd /home/ymmsl-python && pip install -U pip setuptools wheel && pip install -U git+https://github.com/yatiml/yatiml.git@develop && python setup.py test'

.github/workflows/ci_python3.6.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ jobs:
1616
key: python-compatibility-3.6-eggs
1717

1818
- name: Run tests on 3.6 latest
19-
run: docker run -v "${GITHUB_WORKSPACE}:/home/ymmsl-python" python:3.6 /bin/bash -c 'cd /home/ymmsl-python && pip install -U pip setuptools wheel git+https://github.com/yatiml/yatiml.git@develop && python setup.py test'
19+
run: docker run -v "${GITHUB_WORKSPACE}:/home/ymmsl-python" python:3.6 /bin/bash -c 'cd /home/ymmsl-python && pip install -U pip setuptools wheel && pip install -U git+https://github.com/yatiml/yatiml.git@develop && python setup.py test'

ymmsl/configuration.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ def __init__(self,
5353
self.settings = settings
5454

5555
if implementations is None:
56-
# type: Dict[Reference, Implementation]
5756
self.implementations = dict()
5857
elif isinstance(implementations, list):
5958
self.implementations = {

0 commit comments

Comments
 (0)