Skip to content

Commit 692502e

Browse files
authored
Merge pull request microsoft#40576 from weswigham/add-pyright
Add pyright user test
2 parents d94b8e4 + 87c8330 commit 692502e

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
Exit Code: 0
2+
Standard output:
3+
4+
5+
6+
Standard error:
7+
lerna notice cli vX.X.X
8+
lerna info Executing command in 3 packages: "tsc --noEmit"
9+
lerna success exec Executed command in 3 packages: "tsc --noEmit"

tests/cases/docker/pyright/Dockerfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
FROM node:current
2+
RUN git clone https://github.com/microsoft/pyright.git /pyright
3+
WORKDIR /pyright
4+
RUN git pull
5+
RUN npm i
6+
COPY --from=typescript/typescript /typescript/typescript-*.tgz /typescript.tgz
7+
RUN npm install /typescript.tgz --exact --ignore-scripts --save-dev
8+
RUN npx lerna exec --stream --concurrency 1 -- npm install /typescript.tgz --exact --ignore-scripts --save-dev
9+
ENTRYPOINT [ "npx" ]
10+
CMD [ "lerna", "exec", "--stream", "--concurrency", "1", "--no-bail", "--", "tsc", "--noEmit" ]

0 commit comments

Comments
 (0)