Skip to content

Commit 9b268c8

Browse files
committed
Rename robot-stream -> robotframework-output-stream.
1 parent acaa524 commit 9b268c8

95 files changed

Lines changed: 69 additions & 52 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/linting.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ jobs:
6060
run: |
6161
black --check ./robocorp-python-ls-core --exclude=vendored --exclude=libs
6262
63-
- name: Black check robot-stream
63+
- name: Black check robotframework-output-stream
6464
run: |
65-
black --check ./robot-stream --exclude=vendored --exclude=libs
65+
black --check ./robotframework-output-stream --exclude=vendored --exclude=libs
6666
6767
- name: mypy create env
6868
run: |
@@ -76,11 +76,11 @@ jobs:
7676
echo $PWD/robotframework-ls/src > .venv/lib/python3.8/site-packages/rf_src.pth
7777
echo $PWD/robocorp-code/src >> .venv/lib/python3.8/site-packages/rf_src.pth
7878
echo $PWD/robocorp-python-ls-core/src >> .venv/lib/python3.8/site-packages/rf_src.pth
79-
echo $PWD/robot-stream/src >> .venv/lib/python3.8/site-packages/rf_src.pth
79+
echo $PWD/robotframework-output-stream/src >> .venv/lib/python3.8/site-packages/rf_src.pth
8080
echo $PWD/robotframework-ls/tests >> .venv/lib/python3.8/site-packages/rf_src.pth
8181
echo $PWD/robocorp-code/tests >> .venv/lib/python3.8/site-packages/rf_src.pth
8282
echo $PWD/robocorp-python-ls-core/tests >> .venv/lib/python3.8/site-packages/rf_src.pth
83-
echo $PWD/robot-stream/tests >> .venv/lib/python3.8/site-packages/rf_src.pth
83+
echo $PWD/robotframework-output-stream/tests >> .venv/lib/python3.8/site-packages/rf_src.pth
8484
8585
8686
- name: mypy robocorp-code
@@ -99,10 +99,10 @@ jobs:
9999
source ./.venv/bin/activate
100100
mypy --follow-imports=silent --show-column-numbers $PWD/robotframework-ls/src $PWD/robotframework-ls/tests
101101
102-
- name: mypy robot-stream
102+
- name: mypy robotframework-output-stream
103103
run: |
104104
source ./.venv/bin/activate
105-
mypy --follow-imports=silent --show-column-numbers $PWD/robot-stream/src $PWD/robot-stream/tests
105+
mypy --follow-imports=silent --show-column-numbers $PWD/robotframework-output-stream/src $PWD/robotframework-output-stream/tests
106106
107107
- name: mypy robotframework-interactive
108108
run: |

.github/workflows/pre-release-robotframework-lsp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
run: |
5252
python -m dev vendor-robocorp-ls-core
5353
python -m dev vendor-robotframework-interactive
54-
python -m dev vendor-robot-stream
54+
python -m dev vendor-robotframework-output-stream
5555
- name: Fix README references
5656
run: python -m dev fix-readme
5757
- name: Build wheel

.github/workflows/release-robotframework-lsp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
run: |
4343
python -m dev vendor-robocorp-ls-core
4444
python -m dev vendor-robotframework-interactive
45-
python -m dev vendor-robot-stream
45+
python -m dev vendor-robotframework-output-stream
4646
- name: Fix README references
4747
run: python -m dev fix-readme
4848
- name: Build wheel

.github/workflows/tests-robot-stream.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
name: Tests - Robot Stream (robot-stream)
1+
name: Tests - Robot Stream (robotframework-output-stream)
22

33
on:
44
push:
55
paths:
6-
- robot-stream/**
6+
- robotframework-output-stream/**
77
- .github/**
88

99
pull_request:
1010
paths:
11-
- robot-stream/**
11+
- robotframework-output-stream/**
1212
- .github/**
1313

1414
jobs:
@@ -63,25 +63,25 @@ jobs:
6363
python setup.py install
6464
cd ..
6565
- name: setup.py install
66-
working-directory: ./robot-stream
66+
working-directory: ./robotframework-output-stream
6767
run: |
6868
cd src
6969
python setup.py install
7070
cd ..
7171
- name: Install test deps
72-
working-directory: ./robot-stream
72+
working-directory: ./robotframework-output-stream
7373
run: |
7474
cd tests
7575
pip install -r test_requirements.txt
7676
cd ..
7777
- name: Test
78-
working-directory: ./robot-stream/tests
78+
working-directory: ./robotframework-output-stream/tests
7979
env:
8080
PYTHONPATH: .
8181
RUN_TESTS_TIMEOUT: 300
8282
run: python -u ../../robocorp-python-ls-core/tests/run_tests.py -rfE -otests_output -vv .
8383
- uses: actions/upload-artifact@v1
8484
with:
8585
name: tests_output.${{ matrix.name }}.txt
86-
path: robot-stream/tests/tests_output
86+
path: robotframework-output-stream/tests/tests_output
8787

.github/workflows/tests-robotframework-intellij.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
run: |
5656
python -m dev vendor-robocorp-ls-core
5757
python -m dev vendor-robotframework-interactive
58-
python -m dev vendor-robot-stream
58+
python -m dev vendor-robotframework-output-stream
5959
- name: Fix README references
6060
working-directory: ./robotframework-ls
6161
run: python -m dev fix-readme

.github/workflows/tests-robotframework-lsp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
pip install fire
9090
python -m dev vendor-robocorp-ls-core
9191
python -m dev vendor-robotframework-interactive
92-
python -m dev vendor-robot-stream
92+
python -m dev vendor-robotframework-output-stream
9393
- name: setup.py install
9494
working-directory: ./robotframework-ls
9595
run: |

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.mypy]
22
exclude = "_resources|libs|dap_schema|vendored"
3-
mypy_path = "robocorp-python-ls-core/src:robocorp-python-ls-core/stubs:robocorp-python-ls-core/tests:robotframework-ls/src:robotframework-ls/tests:robocorp-python-ls-core/src/robocorp_ls_core/libs/fsnotify_lib:robocorp-python-ls-core/src/robocorp_ls_core/libs/robocop_lib:robocorp-python-ls-core/src/robocorp_ls_core/libs/robotidy_lib:robocorp-python-ls-core/src/robocorp_ls_core/libs/watchdog_lib:robocorp-python-ls-core/src/robocorp_ls_core/libs/yaml_lib:robotframework-interactive/src:robotframework-interactive/tests:robocorp-code/src:robocorp-code/tests:robot-stream/src:robot-stream/tests"
3+
mypy_path = "robocorp-python-ls-core/src:robocorp-python-ls-core/stubs:robocorp-python-ls-core/tests:robotframework-ls/src:robotframework-ls/tests:robocorp-python-ls-core/src/robocorp_ls_core/libs/fsnotify_lib:robocorp-python-ls-core/src/robocorp_ls_core/libs/robocop_lib:robocorp-python-ls-core/src/robocorp_ls_core/libs/robotidy_lib:robocorp-python-ls-core/src/robocorp_ls_core/libs/watchdog_lib:robocorp-python-ls-core/src/robocorp_ls_core/libs/yaml_lib:robotframework-interactive/src:robotframework-interactive/tests:robocorp-code/src:robocorp-code/tests:robotframework-output-stream/src:robotframework-output-stream/tests"
44

55
[[tool.mypy.overrides]]
66
module = "RPA.*"

robocorp-code/.vscode/robocode-vscode.code-workspace

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"path": "../../robotframework-interactive"
1414
},
1515
{
16-
"path": "../../robot-stream"
16+
"path": "../../robotframework-output-stream"
1717
},
1818
{
1919
"path": "../../example-vscode"

robotframework-ls/.project

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<comment></comment>
55
<projects>
66
<project>robocorp-python-ls-core</project>
7-
<project>robot-stream</project>
7+
<project>robotframework-output-stream</project>
88
<project>robotframework-interactive</project>
99
<project>robotframework-ls</project>
1010
</projects>

robotframework-ls/dev.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ def remove_robot_stream(self):
248248
time.sleep(0.5)
249249
return found
250250

251-
def vendor_robot_stream(self):
251+
def vendor_robotframework_output_stream(self):
252252
"""
253253
Vendors robot_stream into robotframework_ls/vendored.
254254
"""
@@ -260,7 +260,7 @@ def vendor_robot_stream(self):
260260
src_core = os.path.join(
261261
os.path.dirname(__file__),
262262
"..",
263-
"robot-stream",
263+
"robotframework-output-stream",
264264
"src",
265265
"robot_stream",
266266
)
@@ -272,7 +272,7 @@ def vendor_robot_stream(self):
272272
os.path.join(
273273
os.path.dirname(__file__),
274274
"..",
275-
"robot-stream",
275+
"robotframework-output-stream",
276276
"output-webview",
277277
)
278278
)

0 commit comments

Comments
 (0)