File: CONTRIBUTING.md

package info (click to toggle)
smart-open 7.5.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 980 kB
  • sloc: python: 8,054; sh: 90; makefile: 14
file content (28 lines) | stat: -rw-r--r-- 406 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Quickstart

Clone the repo and use a python installation to create a venv:

```sh
git clone git@github.com:RaRe-Technologies/smart_open.git
cd smart_open
python -m venv .venv
```

Activate the venv to start working and install test deps:

```sh
.venv/bin/activate
pip install -e ".[test]"
```

Tests should pass:

```sh
pytest
```

That's it! When you're done, deactivate the venv:

```sh
deactivate
```