Bats Installation: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
 
(6 intermediate revisions by the same user not shown)
Line 4: Line 4:


=bats-core Installation=
=bats-core Installation=
==bats-core Installation on Mac==
<syntaxhighlight lang='bash'>
<syntaxhighlight lang='bash'>
# If bats was installed before:
# If bats was installed before:
Line 9: Line 10:


brew install bats-core
brew install bats-core
bats --version
Bats 1.2.1
</syntaxhighlight>
==bats-core Installation on Linux==
{{External|https://bats-core.readthedocs.io/en/stable/installation.html#any-os-installing-bats-from-source}}
<syntaxhighlight lang='bash'>
git clone https://github.com/bats-core/bats-core.git
</syntaxhighlight>
The <code>bats</code> script will be available as <code>./bats-core/bin/bats</code>
Optionally, it can be installed in a different location with:
<syntaxhighlight lang='bash'>
cd bats-core; ./install.sh <new-directory>
</syntaxhighlight>
</syntaxhighlight>


=bats Installation=
=bats Installation=


==Installation on Mac==
{{Warn|Obsolete}}


brew install bats
==bats Installation on Mac==
 
<syntaxhighlight lang='bash'>
brew install bats
bats --version
0.4.0
</syntaxhighlight>


==Installation on Linux==
==bats Installation on Linux==


  git clone https&#58;//github.com/sstephenson/bats.git
  git clone https&#58;//github.com/sstephenson/bats.git
  cd bats
  cd bats
  sudo ./install.sh /usr/local/
  sudo ./install.sh /usr/local/

Latest revision as of 00:27, 3 May 2023

Internal

bats-core Installation

bats-core Installation on Mac

# If bats was installed before:
brew unlink bats

brew install bats-core

bats --version
Bats 1.2.1

bats-core Installation on Linux

https://bats-core.readthedocs.io/en/stable/installation.html#any-os-installing-bats-from-source
git clone https://github.com/bats-core/bats-core.git

The bats script will be available as ./bats-core/bin/bats

Optionally, it can be installed in a different location with:

cd bats-core; ./install.sh <new-directory>

bats Installation


Obsolete

bats Installation on Mac

brew install bats
bats --version
0.4.0

bats Installation on Linux

git clone https://github.com/sstephenson/bats.git
cd bats
sudo ./install.sh /usr/local/