Skip to content

Instantly share code, notes, and snippets.

@2xyo
Last active October 6, 2023 21:00
Show Gist options
  • Save 2xyo/dfa7f5a24c96936fcdb92c026d084401 to your computer and use it in GitHub Desktop.
Save 2xyo/dfa7f5a24c96936fcdb92c026d084401 to your computer and use it in GitHub Desktop.
Msticpy contributing
Fork the current repository, then clone your fork
$ git clone https://github.com/YOUR-USERNAME/msticpy.git
$ cd msticpy
$ git remote add upstream https://github.com/microsoft/msticpy.git
# Create a branch for your feature/fix
$ git switch -c [branch-name]
$ python3.11 -m venv .venv --prompt "msticpy"
$ source .venv/bin/activate
$ pip install --upgrade pip wheel setuptools
$ pip install -e .[all]
$ pip install -r requirements-dev.txt
$ pre-commit install
$ pytest
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment