You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The tests in this folder are not regular Pytest tests.
4
+
They are implemented with [BATS](https://github.com/bats-core/bats-core) to test `awslocal` from `bash`.
5
+
6
+
## Prerequisites
7
+
8
+
**Install BATS**: If you don't have BATS installed, you need to install it first. On a Unix-like system, you can usually install it using a package manager.
9
+
10
+
For any system with `npm`:
11
+
```bash
12
+
npm install -g bats
13
+
```
14
+
15
+
For macOS using Homebrew:
16
+
```bash
17
+
brew install bats-core
18
+
```
19
+
20
+
Alternatively, you can install BATS manually by cloning the repository and adding the `bin` folder to your `PATH` environment variable.
0 commit comments