forked from gtri/irobotframework
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* gtri#2: azure pipelines, more formatting, etc * Set up CI with Azure Pipelines * gtri#2: try node 10 on windows * gtri#2: install kernels, return rc from run * gtri#2: some more fixes for windows, chrome * gtri#2: utf-8 all the things * gtri#2: try updating conda on windows * gtri#2: apparently have a local PR, so can just test before actual PR * gtri#2: force re-install of pyzmq on windows * gtri#2: only do zmq stuff in windows * gtri#2: try defaults first * gtri#2: try pip for zmq on windows * gtri#2: more chromedriver shenanigans, fix conda invocation * gtri#2: try more conda and completion stuff * gtri#2: more conda stuff * gtri#2: force jupyter_server * gtri#2: give up on linting on windows * gtri#2: normalize some browser stuff * gtri#2: linting * gtri#2: keep tightening up scripts, etc * gtri#2: fix more scripts * gtri#2: in, not == * gtri#2: back to defaults for windows * gtri#2: bring back the zmq hack * gtri#2: add win envs * move bootstrap * gtri#2: more windows * gtri#2: win test env extends test * gtri#2: skip more win * typo * longer timeout * gtri#2: on empty test, test everything, but fail on any * add fast fail -x to full test * gtri#2: combine tests and combine * gtri#2: normalize more things for windows * oh, windows npm * more verbose output * gtri#2: clean up more build stuff * just use jlpm * more win stuff * try moving packages * no src in packages * peering * errant output * linting * get more specific with tsc call * more work on shutdown * further simplify js stuff for win * more error weirdness on windows * try more tsconfig tricks * move tsconfig back up * lint first * more un-nesting * lint first * invoking scripts * wheeling * build once * install once * naming * move chromedriver import * don't run unit tests in build * combine needs nbformat * publish naming * naming, some conditions * try cobertura * lint actual src * gah, build, not b * enter the matrix * update test outputs for py version * doesn't like test * maybe in variables? * variables get uppercased? * drop py altogether on names * fix variable typo * maybe just os name * try conditions * re-combine some steps * always with the variables * more parameters * more parameters * condition can't see params? * always can be in if * bigger ifs * display name last? * try different variables * back to conditions * move import of nbformat to appropriate linter * remove python3 refs * split up build * fix artifact names * try using wheels/sdist * pytest whole module * accept jinja2 as a dependency, for now... use vdom if possible, later, or offer plain text (ick) * gah, missed jinja on non-win * wow, bad at this * add environment for testing in windows with python 3.7 * bump the npm tools * try old lts * add command for now * more verbose * move stuff back * execution_count normalizing * try win37 a couple times
- Loading branch information
Showing
57 changed files
with
3,724 additions
and
803 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,3 +15,5 @@ envs/ | |
lib/ | ||
node_modules/ | ||
Untitled*.ipynb | ||
.coverage | ||
.coverage* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
jobs: | ||
- template: ci/job.build.yml | ||
|
||
- template: ci/job.test.unit.yml | ||
parameters: | ||
name: Linux | ||
vmImage: ubuntu-16.04 | ||
|
||
- template: ci/job.test.unit.yml | ||
parameters: | ||
name: MacOSX | ||
vmImage: macos-10.13 | ||
|
||
- template: ci/job.test.unit.yml | ||
parameters: | ||
name: Windows | ||
vmImage: vs2017-win2016 | ||
|
||
- template: ci/job.test.acceptance.yml | ||
parameters: | ||
name: Linux | ||
vmImage: ubuntu-16.04 | ||
|
||
- template: ci/job.test.acceptance.yml | ||
parameters: | ||
name: MacOSX | ||
vmImage: macos-10.13 | ||
|
||
- template: ci/job.test.acceptance.yml | ||
parameters: | ||
name: Windows | ||
vmImage: vs2017-win2016 | ||
|
||
- template: ci/job.combine.yml | ||
|
||
trigger: | ||
- master | ||
|
||
pr: | ||
- master |
Oops, something went wrong.