Skip to content

Commit 7e0c1ee

Browse files
committed
start local win debugging
1 parent 4cae6f4 commit 7e0c1ee

File tree

4 files changed

+31
-7
lines changed

4 files changed

+31
-7
lines changed

.projectignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.ipynb

anaconda-project.yml

Lines changed: 27 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ commands:
1717
unix: pip install -e . --no-deps --ignore-installed --no-cache-dir -vvv
1818
env_spec: rfjl37
1919

20-
install:
21-
unix: pip install . --no-deps --ignore-installed --no-cache-dir -vvv
22-
env_spec: rfjl37
20+
setup:win:
21+
windows: pip install -e . --no-deps --ignore-installed --no-cache-dir -vvv
22+
env_spec: win_rfjl37
2323

2424
lint:
2525
unix: python -m scripts.lint
@@ -29,6 +29,10 @@ commands:
2929
unix: rm -rf _artifacts/test_output && python -m scripts.atest
3030
env_spec: rfjl37
3131

32+
atest:win:
33+
unix: rm -rf _artifacts/test_output && python -m scripts.atest
34+
env_spec: win_rfjl37
35+
3236
clean:
3337
unix: rm -rf $(find src | grep __pycache__)
3438
env_spec: rfjl37
@@ -37,6 +41,17 @@ commands:
3741
unix: python setup.py sdist --dist-dir=_artifacts/sdist
3842
env_spec: rfjl37
3943

44+
sdist:win:
45+
unix: python setup.py sdist --dist-dir=_artifacts/sdist
46+
env_spec: win_rfjl37
47+
48+
install:
49+
unix: pip install . --no-deps --ignore-installed --no-cache-dir -vvv
50+
env_spec: rfjl37
51+
52+
install:win:
53+
unix: python -m pip install _artifacts\sdist\robotframework-jupyterlibrary-0.1.0.tar.gz --no-deps --ignore-installed
54+
env_spec: win_rfjl37
4055

4156
env_specs:
4257
robotframework-jupyterlibrary:
@@ -46,7 +61,7 @@ env_specs:
4661
- geckodriver
4762
- isort
4863
- jupyterlab
49-
- nodejs >=8.12,<9
64+
- nodejs
5065
- pillow
5166
- python-chromedriver-binary
5267
- robotframework
@@ -58,11 +73,19 @@ env_specs:
5873
channels:
5974
- conda-forge
6075
- defaults
76+
6177
rfjl37:
6278
inherit_from:
6379
- robotframework-jupyterlibrary
6480
packages:
6581
- python >=3.7,<3.8
82+
- nodejs >=8.12,<9
83+
84+
win_rfjl37:
85+
inherit_from:
86+
- robotframework-jupyterlibrary
87+
packages:
88+
- python >=3.7,<3.8
6689

6790
rfjl36:
6891
inherit_from:

ci/steps.common.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ steps:
88
- ${{ if not(eq(parameters.name, 'Windows')) }}:
99
- script: python setup.py sdist --dist-dir=_artifacts/sdist
1010
displayName: Build Source Distribution
11-
- script: python -m pip install _artifacts/sdist/*.tar.gz --no-deps --ignore-installed
11+
- script: python -m pip install _artifacts/sdist/robotframework-jupyterlibrary-0.1.0.tar.gz --no-deps --ignore-installed
1212
displayName: Install Source Distribution
1313

1414
- ${{ if eq(parameters.name, 'Windows') }}:
1515
- script: python setup.py sdist --dist-dir=_artifacts\sdist
1616
displayName: Build Source Distribution
17-
- script: python -m pip install _artifacts\sdist\*.tar.gz --no-deps --ignore-installed
17+
- script: python -m pip install _artifacts\sdist\robotframework-jupyterlibrary-0.1.0.tar.gz --no-deps --ignore-installed
1818
displayName: Install Source Distribution
1919

2020
- script: python -m scripts.atest

environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ dependencies:
1010
- geckodriver
1111
- isort
1212
- jupyterlab
13-
- nodejs >=8.12,<9
13+
- nodejs
1414
- pillow
1515
- python-chromedriver-binary
1616
- robotframework

0 commit comments

Comments
 (0)