Skip to content

Commit 0da2b28

Browse files
committed
Merge branch 'master' into develop
2 parents 36bdc6c + ba565a0 commit 0da2b28

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

.github/workflows/test-windows.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,11 @@ jobs:
2828
- name: Python Test
2929
shell: cmd
3030
run: |
31-
metacall pip install -r test/requirements.txt | findstr "Successfully installed"
31+
rem metacall pip install -r test/requirements.txt | findstr "Successfully installed"
32+
metacall pip install -r test/requirements.txt
3233
IF %ERRORLEVEL% NEQ 0 exit /B 1
33-
metacall ./test/requirements.py | findstr "123456"
34+
rem metacall ./test/requirements.py | findstr "123456"
35+
metacall ./test/requirements.py
3436
IF %ERRORLEVEL% NEQ 0 exit /B 1
3537
3638
- name: Deploy & FaaS Test

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,25 @@ Example usage:
7878

7979
# Testing
8080

81+
### Linux / MacOS
82+
83+
Requires docker to be installed.
84+
8185
```sh
86+
git clone https://github.com/metacall/install.git metacall-install
87+
cd metacall-install
8288
./test.sh
8389
```
8490

91+
### Windows
92+
93+
Windows does not include a test script yet, but you can use `install.ps1` script for testing yourself on your computer.
94+
95+
```sh
96+
git clone https://github.com/metacall/install.git metacall-install
97+
cd metacall-install
98+
powershell -NoProfile -ExecutionPolicy unrestricted ./install.ps1
99+
```
100+
85101
# Troubleshooting
86102
Sometimes the domain _raw.githubusercontent.com_ maybe blocked by your ISP. Due to this, you may not be able to install metacall directly from previous commands. In that case, you may clone this repo and directly run [install.sh](https://github.com/metacall/install/blob/master/install.sh) for Linux and run [install.ps1](https://github.com/metacall/install/blob/master/install.ps1) for Windows.

0 commit comments

Comments
 (0)