Skip to content

Commit ea0823f

Browse files
committed
Disable coveralls for now. Coveralls is having server issues!
1 parent 4303d3a commit ea0823f

File tree

2 files changed

+29
-28
lines changed

2 files changed

+29
-28
lines changed

.github/workflows/build.yml

Lines changed: 26 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ jobs:
4040
needs:
4141
- build_test_wheel
4242
strategy:
43+
fail-fast: false
4344
matrix:
4445
python-version:
4546
- "3.7"
@@ -94,31 +95,31 @@ jobs:
9495
export SYSTEMRDL_DISABLE_ACCELERATOR=1
9596
pytest
9697
97-
- name: Coveralls
98-
env:
99-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
100-
COVERALLS_PARALLEL: true
101-
run: |
102-
cd test
103-
python -m pip install -U coveralls>=3.0.0
104-
coveralls --service=github
105-
106-
finish_coveralls:
107-
needs: test
108-
runs-on: ubuntu-latest
109-
steps:
110-
- name: Setup Python
111-
uses: actions/setup-python@v4
112-
with:
113-
python-version: 3.x
114-
115-
- name: Coveralls
116-
env:
117-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
118-
COVERALLS_PARALLEL: true
119-
run: |
120-
python -m pip install -U coveralls>=3.0.0
121-
coveralls --service=github --finish
98+
# - name: Coveralls
99+
# env:
100+
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
101+
# COVERALLS_PARALLEL: true
102+
# run: |
103+
# cd test
104+
# python -m pip install -U coveralls>=3.0.0
105+
# coveralls --service=github
106+
#
107+
# finish_coveralls:
108+
# needs: test
109+
# runs-on: ubuntu-latest
110+
# steps:
111+
# - name: Setup Python
112+
# uses: actions/setup-python@v4
113+
# with:
114+
# python-version: 3.x
115+
#
116+
# - name: Coveralls
117+
# env:
118+
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
119+
# COVERALLS_PARALLEL: true
120+
# run: |
121+
# python -m pip install -U coveralls>=3.0.0
122+
# coveralls --service=github --finish
122123

123124
#-------------------------------------------------------------------------------
124125
lint:

src/systemrdl/node.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ def __init__(self, inst: comp.Component, env: 'RDLEnvironment', parent: Optional
2828
# Do not call directly. Use factory() static method instead
2929
self.env = env
3030

31-
#: Reference to :class:`~systemrdl.component.Component` that instantiates this node
31+
#: Reference to :class:`~systemrdl.component.Component` data object.
3232
#:
33-
#: .. deprecated:: 1.30.0
33+
#: .. deprecated:: 1.30
3434
#: Querying the internal ``Component`` objects is no longer recommended.
3535
#:
3636
#: Equivalents for most concepts have been made available as direct
37-
#: methods or properties of the :class:`Node` objects. It is strongly
37+
#: methods or properties of :class:`Node` objects. It is strongly
3838
#: recommended to use these instead to prevent compatibility issues.
3939
self.inst = inst
4040

0 commit comments

Comments
 (0)