Skip to content

Instantly share code, notes, and snippets.

View ghost-x47's full-sized avatar
🎯
Focusing

Artem Smirnov ghost-x47

🎯
Focusing
View GitHub Profile
@ghost-x47
ghost-x47 / locustfile.py
Created October 9, 2018 11:38 — forked from yamionp/locustfile.py
Websocket Locust Sample. locustfile and Echo/Chat Server
# -*- coding:utf-8 -*-
from __future__ import absolute_import
from __future__ import unicode_literals
from __future__ import print_function
import json
import uuid
import time
import gevent
@ghost-x47
ghost-x47 / Fastfile
Created December 6, 2017 04:34 — forked from dddnuts/Fastfile
Build ipa from Unity project with fastlane
fastlane_version "1.94.0"
default_platform :ios
platform :ios do
desc "Run Unity Editor tests"
lane :test_unit do
unity(
run_editor_tests: true
)